From e04627e185a70c0899fa445a97c77d5a4026824c Mon Sep 17 00:00:00 2001 From: CREDO23 Date: Tue, 23 Jun 2026 15:18:00 +0200 Subject: [PATCH] feat: export video presentation viewer --- .../video-presentation/generate-video-presentation.tsx | 2 +- surfsense_web/components/tool-ui/video-presentation/index.ts | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/surfsense_web/components/tool-ui/video-presentation/generate-video-presentation.tsx b/surfsense_web/components/tool-ui/video-presentation/generate-video-presentation.tsx index 9f2115073..1eb9e7d26 100644 --- a/surfsense_web/components/tool-ui/video-presentation/generate-video-presentation.tsx +++ b/surfsense_web/components/tool-ui/video-presentation/generate-video-presentation.tsx @@ -485,7 +485,7 @@ function VideoPresentationPlayer({ ); } -function StatusPoller({ +export function StatusPoller({ presentationId, title, shareToken, diff --git a/surfsense_web/components/tool-ui/video-presentation/index.ts b/surfsense_web/components/tool-ui/video-presentation/index.ts index 7298a08ad..fbc982690 100644 --- a/surfsense_web/components/tool-ui/video-presentation/index.ts +++ b/surfsense_web/components/tool-ui/video-presentation/index.ts @@ -1 +1,4 @@ -export { GenerateVideoPresentationToolUI } from "./generate-video-presentation"; +export { + GenerateVideoPresentationToolUI, + StatusPoller as VideoPresentationViewer, +} from "./generate-video-presentation";