🐛 Do not use session storage for store persistence
        Tim Izzo tim@octree.ch
        
        
        
        
        
        Wed, 28 Sep 2022 11:42:26 +0200
        
          1 files changed,
          1 insertions(+),
          5 deletions(-)
          
          
        
            
            
            
            M
            
          
          frontend/stores/useRedirectUrl.ts
          
            → 
            frontend/stores/useRedirectUrl.ts
          
          
            
          @@ -16,11 +16,7 @@ const redirectUrl = get().redirectUrl;
set({redirectUrl: null}); return redirectUrl; }, - })), - { - name: 'currentUrl', - getStorage: () => sessionStorage, - } + })) ); export default useRedirectUrlStore;