fix(LogOut): used log out action instead of clearState utility

This commit is contained in:
Yury 2024-05-24 15:31:53 +03:00
parent f4ecbe5f39
commit d3d87be2c3

View File

@ -10,7 +10,11 @@ import {
import { useEffect, useState } from 'react'
import { useDispatch, useSelector } from 'react-redux'
import { setAuthState, setMetadataEvent } from '../../store/actions'
import {
setAuthState,
setMetadataEvent,
userLogOutAction
} from '../../store/actions'
import { State } from '../../store/rootReducer'
import { Dispatch } from '../../store/store'
import Username from '../username'
@ -24,7 +28,6 @@ import {
} from '../../routes'
import {
clearAuthToken,
clearState,
saveNsecBunkerDelegatedKey,
shorten
} from '../../utils'
@ -96,7 +99,8 @@ export const AppBar = () => {
// clear authToken saved in local storage
clearAuthToken()
clearState()
dispatch(userLogOutAction())
// update nsecBunker delegated key after logout
const nostrController = NostrController.getInstance()