We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f1e98a commit fcaf617Copy full SHA for fcaf617
1 file changed
reflex/.templates/web/utils/state.js
@@ -791,7 +791,7 @@ export const hydrateClientStorage = (client_storage) => {
791
for (const state_key in client_storage.cookies) {
792
const cookie_options = client_storage.cookies[state_key];
793
const cookie_name = cookie_options.name || state_key;
794
- const cookie_value = cookies.get(cookie_name, true);
+ const cookie_value = cookies.get(cookie_name, { doNotParse: true });
795
if (cookie_value !== undefined) {
796
client_storage_values[state_key] = cookie_value;
797
}
0 commit comments