Skip to content

Commit

Permalink
🐛 Fix(custom): fix offical setting bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuingsmile committed Jun 24, 2024
1 parent b529a50 commit 48fed10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/settingForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function useSettingForm() {
return
}
settingForm.value[key as keyof typeof settingForm.value] =
localStorage.getItem(key) ||
localStorage.getItem(settingPreset[key].saveKey || key) ||
settingForm.value[key as keyof typeof settingForm.value]
})
return { settingForm, settingFormKeys }
Expand Down

0 comments on commit 48fed10

Please sign in to comment.