Skip to content

Commit 22d9bb3

Browse files
Update reflex/.templates/web/utils/state.js
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
1 parent 061fdef commit 22d9bb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reflex/.templates/web/utils/state.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ export const hydrateClientStorage = (client_storage) => {
793793
const cookie_name = cookie_options.name || state_key;
794794
const cookie_value = cookies.get(cookie_name, true);
795795
if (cookie_value !== undefined) {
796-
client_storage_values[state_key] = cookies.get(cookie_name, true);
796+
client_storage_values[state_key] = cookie_value;
797797
}
798798
}
799799
}

0 commit comments

Comments
 (0)