diff --git a/frontend/wizard-vue/src/stores/wizard.ts b/frontend/wizard-vue/src/stores/wizard.ts index 082b1a2..bed82bb 100644 --- a/frontend/wizard-vue/src/stores/wizard.ts +++ b/frontend/wizard-vue/src/stores/wizard.ts @@ -20,7 +20,7 @@ export const useWizardStore = defineStore('wizard', () => { const updateLocalStorage = debounce(() => { localStorage.setItem(LOCAL_STORAGE_KEY, JSON.stringify(specs)); - }, 250); + }, 100); function updateSpec(fieldName: FieldNames, newValue: string) { specs[fieldName] = newValue;