ui: untrack settings sync in props effect to prevent reactive loop (#23127)

This commit is contained in:
Pascal
2026-05-16 11:25:34 +02:00
committed by GitHub
parent 1d9f99aa75
commit 366c5e2a3b
+3 -1
View File
@@ -153,7 +153,9 @@
const serverProps = serverStore.props;
if (serverProps) {
settingsStore.syncWithServerDefaults();
untrack(() => {
settingsStore.syncWithServerDefaults();
});
}
});