chore: Update translations
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Kieran 2024-01-04 17:14:23 +00:00
parent daad0bbe76
commit 3963db1a0a
1 changed files with 8 additions and 1 deletions

View File

@ -64,7 +64,14 @@ export function getAlbyOAuth() {
const clientId = CONFIG.alby?.clientId ?? "";
const clientSecret = CONFIG.alby?.clientSecret ?? "";
const redirectUrl = `${window.location.protocol}//${window.location.host}/settings/wallet/alby`;
const scopes = ["invoices:create", "invoices:read", "transactions:read", "balance:read", "payments:send", "account:read"];
const scopes = [
"invoices:create",
"invoices:read",
"transactions:read",
"balance:read",
"payments:send",
"account:read",
];
const ec = new TextEncoder();
const tokenUrl = "https://api.getalby.com/oauth/token";