diff --git a/bsg-frontend/apps/extension/customComponents/Toolbar/Toolbar.tsx b/bsg-frontend/apps/extension/customComponents/Toolbar/Toolbar.tsx
index b101cd08..56b25121 100644
--- a/bsg-frontend/apps/extension/customComponents/Toolbar/Toolbar.tsx
+++ b/bsg-frontend/apps/extension/customComponents/Toolbar/Toolbar.tsx
@@ -12,6 +12,7 @@ export const Toolbar = () => {
const isAdmin = useRoomStore(s => s.isAdmin);
const isRoundStarted = useRoomStore(s => s.isRoundStarted);
+ const setActiveTab = useRoomStore(s => s.setActiveTab);
const { handleStartRound, handleEndRound, handleLeaveRoom } = useRoomEvents();
// TODO: Move timer into separate iframe
@@ -114,7 +115,7 @@ export const Toolbar = () => {