Fix: fix regression which caused a hang when loading a custom theme

This commit is contained in:
Pieter Vander Vennet 2025-07-06 00:51:47 +02:00
parent edbfc5f86b
commit 4d8720a856
2 changed files with 11 additions and 9 deletions

View file

@ -78,7 +78,7 @@
)
const customThemes: Store<MinimalThemeInformation[]> = Stores.ListStabilized<string>(
state.installedUserThemes
state.installedUserThemes.stabilized(1000)
).mapD((stableIds) => Utils.NoNullInplace(stableIds.map((id) => state.getUnofficialTheme(id))))
function filtered(themes: Store<MinimalThemeInformation[]>): Store<MinimalThemeInformation[]> {