Fix white screen

This commit is contained in:
Jon Staab 2024-06-24 15:03:41 -07:00
parent 67fe524dd1
commit 5075bccd1a
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
# Changelog
# 0.4.9
# 0.4.8
- [x] Add support for kind 10050 relay lists

View File

@ -252,7 +252,7 @@ export const defaultSettings = {
}
export const settings = withGetter(
derived(session, $session => ({...defaultSettings, ...$session.settings})),
derived(session, $session => ({...defaultSettings, ...$session?.settings})),
)
export const getSetting = k => prop(k, settings.get())