We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3be2840 commit 9077ef1Copy full SHA for 9077ef1
packages/page-practice/lib/settings/KeyboardSettings.tsx
@@ -81,7 +81,10 @@ function LayoutProp(): ReactNode {
81
value={options.language.id}
82
onSelect={(id) => {
83
updateSettings(
84
- options.withLanguage(Language.ALL.get(id)).save(settings),
+ options
85
+ .withLanguage(Language.ALL.get(id))
86
+ .withGeometry(options.geometry)
87
+ .save(settings),
88
);
89
}}
90
/>
@@ -101,7 +104,10 @@ function LayoutProp(): ReactNode {
101
104
value={options.layout.id}
102
105
103
106
- options.withLayout(Layout.ALL.get(id)).save(settings),
107
108
+ .withLayout(Layout.ALL.get(id))
109
110
111
112
113
0 commit comments