Clear meta.pubkey after verify_credentials

deno-prep
Alex Gleason 2024-10-22 20:11:33 -05:00
rodzic b032b47359
commit 32e305d1c6
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -27,10 +27,10 @@ function logInNostr(pubkey: string) {
secret,
}));
dispatch(setNostrPubkey(undefined));
const { access_token } = dispatch(authLoggedIn(token));
return await dispatch(verifyCredentials(access_token as string));
await dispatch(verifyCredentials(access_token as string));
dispatch(setNostrPubkey(undefined));
};
}