1
0
mirror of https://github.com/bitwarden/web synced 2025-12-11 05:43:16 +00:00

Fix linting errors (#749)

* Fix linting errors

* Added back the form promise
This commit is contained in:
Oscar Hinton
2020-12-22 17:28:58 +01:00
committed by GitHub
parent 3c5a972bc9
commit 5a76ca4676
5 changed files with 7 additions and 4 deletions

View File

@@ -54,7 +54,7 @@ export class SsoComponent extends BaseSsoComponent {
async submit() {
await this.storageService.save(IdentifierStorageKey, this.identifier);
if (this.clientId === 'browser') {
document.cookie = `ssoHandOffMessage=${this.i18nService.t('ssoHandOff')};SameSite=strict`
document.cookie = `ssoHandOffMessage=${this.i18nService.t('ssoHandOff')};SameSite=strict`;
}
super.submit();
}