Change Autofill on Page Load default to autofill

This commit is contained in:
Thomas Rittson 2021-05-21 09:11:04 +10:00
parent 6899bfd538
commit dae41425a4
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ export class OptionsComponent implements OnInit {
ConstantsService.enableAutoFillOnPageLoadKey);
this.autoFillOnPageLoadDefault = await this.storageService.get<boolean>(
ConstantsService.autoFillOnPageLoadDefaultKey) ?? false;
ConstantsService.autoFillOnPageLoadDefaultKey) ?? true;
this.disableAddLoginNotification = await this.storageService.get<boolean>(
ConstantsService.disableAddLoginNotificationKey);