refactor(updates): reorganize into components/hooks

This commit is contained in:
Théo LAGACHE
2026-06-23 16:06:28 +02:00
parent 2f83eafa97
commit 84b0b4b337
3 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ import { currentUser } from "@/lib/auth/current-user";
import { isOnboardingDone } from "@/db/services/setting";
import { env } from "@/env.mjs";
import { ModeToggle } from "@/features/theme/components/mode-toggle";
import { UpdateNotification } from "@/features/updates/update-notification";
import { UpdateNotification } from "@/features/updates/components/update-notification";
export default async function Layout({ children }: { children: ReactNode }) {
if (env.SKIP_ONBOARDING !== "true" && !(await isOnboardingDone())) {