Skip to content

Commit

Permalink
Ensure that the "showExtensionInFullSizeView" preference is saved as …
Browse files Browse the repository at this point in the history
…boolean
  • Loading branch information
dan437 committed Jan 9, 2024
1 parent 4b59fc0 commit c4f9532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/store/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2839,7 +2839,7 @@ export function setShowTestNetworks(value: boolean) {
}

export function setShowExtensionInFullSizeView(value: boolean) {
return setPreference('showExtensionInFullSizeView', value);
return setPreference('showExtensionInFullSizeView', Boolean(value));
}

export function setAutoLockTimeLimit(value: boolean) {
Expand Down

0 comments on commit c4f9532

Please sign in to comment.