Something odd: I can't find the log out button on Primal. It's been acting weird (it refuses to display my notifications) so I figured I'd log out and then log back in but . . . no log out button and I know it has to be there. The kicker is that primal.net isn't showing up in my "cookies and other site data" on Brave browser so I can't kill it's cookies and try that. Anyone have any ideas?
There are more ways to store data than cookies. 1. Visit site 2. pop your dev-console `Ctrl+shift+i` or just right click anywhere and chose "inspect element" 3. Locate tab "storage". 4. Right-click everything and choose delete/purge Hope it helps :-)
Sadly it didn’t but I appreciate your help nonetheless. Never knew about this trick so it’ll come in handy for other things.
Since it's nostr, your nsec should never leave your browser, cookies are created by servers So the only two other locations I can think of is localstorage and indexeddb. Try running this in your js-console ``` localStorage.clear() ``` That's all I have :'-)