Skip to content

Commit 83b7f64

Browse files
authored
[PM-37485] Bugfix: Autofill settings do not save in browser extension (#20658)
1 parent aa5879f commit 83b7f64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/browser/src/autofill/popup/settings/autofill.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ export class AutofillComponent implements OnInit {
636636
}
637637

638638
const result = await chrome.storage.session.get("pendingDefaultPasswordManagerApply");
639-
return Boolean(result.pendingDefaultPasswordManagerApply);
639+
return Boolean(result?.pendingDefaultPasswordManagerApply);
640640
}
641641

642642
async updateShowCardsCurrentTab() {

0 commit comments

Comments
 (0)