From 9a5716fdcb3c4b54efc09d945d36200509939663 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Mon, 28 Oct 2024 14:16:22 +0100 Subject: [PATCH] ui: fix projectid passed to assist --- frontend/app/components/Session/LivePlayer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Session/LivePlayer.tsx b/frontend/app/components/Session/LivePlayer.tsx index a866c47d3..00dbad925 100644 --- a/frontend/app/components/Session/LivePlayer.tsx +++ b/frontend/app/components/Session/LivePlayer.tsx @@ -43,7 +43,7 @@ function LivePlayer({ const location = useLocation(); useEffect(() => { - const projectId = projectsStore.getSiteId(); + const projectId = projectsStore.getSiteId().siteId; playerInst = undefined; if (!usedSession.sessionId || contextValue.player !== undefined) return; console.debug('creating live player for', usedSession.sessionId);