mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-13 19:48:37 -05:00
Add double quotes for localize hygiene check (#6492)
* Add localize single quote hygiene task * Update localize calls * Update comment * Fix build failures and remove test code
This commit is contained in:
@@ -151,7 +151,7 @@ export class AccountManagementService implements IAccountManagementService {
|
||||
let refreshedAccount = await provider.provider.refresh(account);
|
||||
if (self.isCanceledResult(refreshedAccount)) {
|
||||
// Pattern here is to throw if this fails. Handled upstream.
|
||||
throw new Error(localize('refreshFailed', 'Refresh account was canceled by the user'));
|
||||
throw new Error(localize('refreshFailed', "Refresh account was canceled by the user"));
|
||||
} else {
|
||||
account = refreshedAccount;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user