clear local storage

This commit is contained in:
Michael Quigley 2022-08-02 14:48:18 -04:00
parent c21023a9cc
commit 254240a3d6
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -31,6 +31,7 @@ const App = () => {
<Identities user={user}/> <Identities user={user}/>
<Logout user={user} logout={() => { <Logout user={user} logout={() => {
setUser(null); setUser(null);
localStorage.clear();
}}/> }}/>
</header> </header>
</div> </div>