Skip to content

Commit

Permalink
fix: fix user default config regression
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreminger committed Dec 30, 2024
1 parent 670bb2c commit 6d2e4fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SetDefaultConfigDialog.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import RequestPersistentStorage from "./RequestPersistentStorage.svelte";
let userDefaultConfig: Config = getDefaultConfig();
let userDefaultConfig: Config = $state(getDefaultConfig());
let configsMatch = $derived(configsEqual($config, userDefaultConfig));
let currentConfigIsDefaultConfig = $derived(isDefaultConfig($config));
Expand Down

0 comments on commit 6d2e4fa

Please sign in to comment.