1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-31 15:43:15 +00:00

[bug] Correct the serverUrl helpers return

This commit is contained in:
addison
2021-11-17 13:22:35 -05:00
parent 55691be56b
commit 8ddf164e13

View File

@@ -130,7 +130,7 @@ export class AccountSettings {
vaultTimeoutAction?: string;
get serverUrl(): string {
return this.settings.environmentUrls?.base ?? 'bitwarden.com';
return this.environmentUrls?.base ?? 'bitwarden.com';
}
}