We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 894fdf4 commit 91d35a2Copy full SHA for 91d35a2
apps/desktop/src/utils/queries.ts
@@ -181,6 +181,12 @@ export function createOptionsQuery() {
181
});
182
183
184
+ recordingSettingsStore.get().then((data) => {
185
+ if (data?.mode && data.mode !== _state.mode) {
186
+ _setState("mode", data.mode);
187
+ }
188
+ });
189
+
190
const storeListenerCleanup = recordingSettingsStore.listen((data) => {
191
if (data?.mode && data.mode !== _state.mode) {
192
_setState("mode", data.mode);
0 commit comments