fix: missing upgrade translation for callback

This commit is contained in:
Zack Spear
2023-08-10 17:14:07 -07:00
parent 0fc5eb43e6
commit cedaceaff8
2 changed files with 1 additions and 3 deletions

View File

@@ -74,6 +74,7 @@ $webComponentTranslations = [
'Please keep this window open while we perform some actions' => _('Please keep this window open while we perform some actions'),
'You\'re one step closer to enhancing your Unraid experience' => _('You\'re one step closer to enhancing your Unraid experience'),
'Thank you for purchasing an Unraid {0} Key!' => sprintf(_('Thank you for purchasing an Unraid %s Key!'), '{0}'),
'Thank you for upgrading to an Unraid {0} Key!' => sprintf(_('Thank you for upgrading to an Unraid %s Key!'), '{0}'),
'Your {0} Key has been replaced!' => sprintf(_('Your %s Key has been replaced!'), '{0}'),
'Your Trial key has been extended!' => _('Your Trial key has been extended!'),
'Copied' => _('Copied'),

View File

@@ -28,9 +28,6 @@ let prioritizeCorsError = false; // Ensures we don't overwrite this specific err
const httpEndpoint = GRAPHQL;
const wsEndpoint = new URL(GRAPHQL.toString().replace('http', 'ws'));
console.debug('[unraidApi.ts] httpEndpoint', httpEndpoint);
console.debug('[unraidApi.ts] wsEndpoint', wsEndpoint);
export const useUnraidApiStore = defineStore('unraidApi', () => {
console.debug('[useUnraidApiStore]');
const accountStore = useAccountStore();