From 8e9337d39653fd3b77b9c42c7b8d499b7f5da126 Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Thu, 13 Feb 2025 14:22:25 -0500 Subject: [PATCH] Fix issue in creator-profile-store losing creator information --- frontend/src/stores/creatorProfileStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/stores/creatorProfileStore.js b/frontend/src/stores/creatorProfileStore.js index 5eda1ce..d11d78a 100644 --- a/frontend/src/stores/creatorProfileStore.js +++ b/frontend/src/stores/creatorProfileStore.js @@ -28,7 +28,7 @@ export const useCreatorProfileStore = defineStore( const value = useSessionStorage( 'creator-profile', - undefined, + {}, { writeDefaults: false, storage: window.sessionStorage,