refactor(App): use dash for shell update settings message

This commit is contained in:
Tim 2025-02-19 11:11:40 +01:00
parent a4ee4db1b8
commit 31121aab21

View file

@ -106,7 +106,7 @@ const App = () => {
i18n.changeLanguage(args.settings.interfaceLanguage);
}
if (args?.settings) {
shell.send('update_settings', args.settings);
shell.send('update-settings', args.settings);
}
break;
}
@ -118,7 +118,7 @@ const App = () => {
}
if (state?.profile?.settings) {
shell.send('update_settings', state.profile.settings);
shell.send('update-settings', state.profile.settings);
}
};
const onWindowFocus = () => {