Update some styles and fix channel settings

This commit is contained in:
2025-08-12 03:45:52 +02:00
parent 3edab7fbd7
commit 9f0943748f
7 changed files with 108 additions and 174 deletions

View File

@@ -112,7 +112,7 @@ export const useAppStore = defineStore('app', () => {
const updateSettings = async (newSettings: Partial<AppSettings>) => {
settings.value = { ...settings.value, ...newSettings }
await set('app_settings', settings.value)
await set('app_settings', JSON.parse(JSON.stringify(settings.value)))
}
const loadState = async () => {