From 1e1da493f2d24e339a0a75dad5b127d8ae1f7733 Mon Sep 17 00:00:00 2001 From: Damillora Date: Mon, 24 Feb 2025 13:04:45 +0000 Subject: [PATCH] fix: remove ineffective ssr const --- pkg/web/src/routes/+layout.svelte | 2 -- pkg/web/src/routes/auth/+layout.svelte | 2 -- 2 files changed, 4 deletions(-) diff --git a/pkg/web/src/routes/+layout.svelte b/pkg/web/src/routes/+layout.svelte index 27645c0..f765849 100644 --- a/pkg/web/src/routes/+layout.svelte +++ b/pkg/web/src/routes/+layout.svelte @@ -6,8 +6,6 @@ } let { children }: Props = $props(); - - export const ssr = false; diff --git a/pkg/web/src/routes/auth/+layout.svelte b/pkg/web/src/routes/auth/+layout.svelte index 0f4c291..fa7e3fd 100644 --- a/pkg/web/src/routes/auth/+layout.svelte +++ b/pkg/web/src/routes/auth/+layout.svelte @@ -5,8 +5,6 @@ } let { children }: Props = $props(); - - export const ssr = false;