fix(web): add 'use client' to AppShell — fixes SSR prerender error
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful

This commit is contained in:
2026-03-21 07:50:44 -05:00
parent dc4de86be7
commit 421b8bea33

View File

@@ -1,3 +1,5 @@
'use client';
import type { ReactNode } from 'react';
import { SidebarProvider, useSidebar } from './sidebar-context';
import { Sidebar } from './sidebar';