Skip to content

Commit d41dcc6

Browse files
committed
fix(UserSettings): save invertedDisks as string
1 parent f60f78e commit d41dcc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/containers/UserSettings/UserSettings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function UserSettings(props: any) {
2121
};
2222

2323
const _onInvertedDisksChangeHandler = (value: boolean) => {
24-
props.setSettingValue(INVERTED_DISKS_KEY, value);
24+
props.setSettingValue(INVERTED_DISKS_KEY, String(value));
2525
};
2626

2727
return (

0 commit comments

Comments
 (0)