fix: 🐛 Fixes with not refreshing localStorage me value

This commit is contained in:
Jesse Wierzbinski 2024-05-12 17:44:32 -10:00
parent 14a37d3585
commit 32c13d4c99
No known key found for this signature in database
4 changed files with 25 additions and 7 deletions

View file

@ -100,8 +100,7 @@ const redirect_uri = query.redirect_uri as string;
const client_id = query.client_id;
const scope = query.scope ? decodeURIComponent(query.scope as string) : "";
const validUrlParameters =
application && redirect_uri && client_id && scope;
const validUrlParameters = application && redirect_uri && client_id && scope;
const oauthScopeText: Record<string, string> = {
"rw:accounts": "$VERB your account information",