diff --git a/app/components-react/highlighter/ClipPreview.tsx b/app/components-react/highlighter/ClipPreview.tsx
index 4cdae6f99407..c4e29c5cc46e 100644
--- a/app/components-react/highlighter/ClipPreview.tsx
+++ b/app/components-react/highlighter/ClipPreview.tsx
@@ -18,6 +18,7 @@ export default function ClipPreview(props: {
emitShowTrim: () => void;
emitShowRemove: () => void;
emitOpenFileInLocation: () => void;
+ game: EGame;
}) {
const { HighlighterService } = Services;
const v = useVuex(() => ({
@@ -28,8 +29,6 @@ export default function ClipPreview(props: {
const clipThumbnail = v.clip.scrubSprite || '';
const enabled = v.clip.deleted ? false : v.clip.enabled;
- const game = HighlighterService.getGameByStreamId(props.streamId);
-
if (!v.clip) {
return <>deleted>;
}
@@ -108,7 +107,7 @@ export default function ClipPreview(props: {
}}
>
{isAiClip(v.clip) ? (
-