From 6210533052d8010b6744d343462b49a23214b215 Mon Sep 17 00:00:00 2001 From: James Murty Date: Tue, 17 Mar 2026 09:28:48 +1100 Subject: [PATCH] Fix typo in example `ssr` option usage --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index da65e60..345baf5 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ by `ssr: 'initial'`: ```tsx export const Header = () => { - const profile = useStore($profile, { ssr: true }) + const profile = useStore($profile, { ssr: 'initial' }) // Hydrate with initial profile, then render latest client-side value return
{profile.name}
}