From e83c03d780797841549377729b349b1913598634 Mon Sep 17 00:00:00 2001 From: Vinicius Yahagi Rios <136207802+ViniciusRiosYahagi@users.noreply.github.com> Date: Thu, 14 Aug 2025 10:02:30 +0900 Subject: [PATCH] Update +page.svelte Changing import from "$app/store" to "$app/state". In svelte 5 do not needed to pass $. --- src/routes/protected/+page.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/protected/+page.svelte b/src/routes/protected/+page.svelte index 4acf5a3..5e6f512 100644 --- a/src/routes/protected/+page.svelte +++ b/src/routes/protected/+page.svelte @@ -1,14 +1,14 @@ -{#if $page.data.session} +{#if page.data.session}
This is a protected content. You can access this content because you are signed in.
-Session expiry: {$page.data.session?.expires}
+Session expiry: {page.data.session?.expires}
{:else}