Skip to content

Commit fcaf617

Browse files
committed
Fix it properly Anna Maria, with breadcrumbs
1 parent 4f1e98a commit fcaf617

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ export const hydrateClientStorage = (client_storage) => {
791791
for (const state_key in client_storage.cookies) {
792792
const cookie_options = client_storage.cookies[state_key];
793793
const cookie_name = cookie_options.name || state_key;
794-
const cookie_value = cookies.get(cookie_name, true);
794+
const cookie_value = cookies.get(cookie_name, { doNotParse: true });
795795
if (cookie_value !== undefined) {
796796
client_storage_values[state_key] = cookie_value;
797797
}

0 commit comments

Comments
 (0)