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}
}