diff --git a/src/hooks/useLayout.ts b/src/hooks/useLayout.ts index 7c7ad62ad2d4dc8646f37300f154d90d67c1ed32..3b93a2057479d86b73b86003d38354f3bed7ef33 100644 --- a/src/hooks/useLayout.ts +++ b/src/hooks/useLayout.ts @@ -9,11 +9,8 @@ export default function useLayout(): LayoutConfig | null { useEffect(() => { LayoutService.init().then(() => { const refresh = () => { - console.log("Resync") const activeLayout = LayoutService.getActiveLayout(); - console.log("Determined", activeLayout.id); - if(currentId.current !== activeLayout.id) { console.log("Switching from", currentId.current, "to", activeLayout.id) currentId.current = activeLayout.id;