diff --git a/src/plugins/biggerStreamPreview/index.tsx b/src/plugins/biggerStreamPreview/index.tsx index d3ed713a..acad564d 100644 --- a/src/plugins/biggerStreamPreview/index.tsx +++ b/src/plugins/biggerStreamPreview/index.tsx @@ -61,14 +61,13 @@ export const handleViewPreview = async ({ guildId, channelId, ownerId }: Applica }; export const addViewStreamContext: NavContextMenuPatchCallback = (children, { userId }: { userId: string | bigint; }) => () => { - const streamPreviewItemIdentifier = "view-stream-preview"; - const stream = ApplicationStreamingStore.getAnyStreamForUser(userId); + if (!stream) return; const streamPreviewItem = ( stream && handleViewPreview(stream)} disabled={!stream}