experiments in a post-browser web
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(settings): default theme fallback from basic to peek

+2 -2
+2 -2
app/settings/settings.js
··· 228 228 229 229 // Get current theme state 230 230 const themeState = await api.theme.get(); 231 - const activeThemeId = themeState?.themeId || 'basic'; 231 + const activeThemeId = themeState?.themeId || 'peek'; 232 232 const colorScheme = themeState?.colorScheme || 'system'; 233 233 234 234 // Color scheme selector at top ··· 386 386 try { 387 387 const result = await api.theme.getAll(); 388 388 const currentTheme = await api.theme.get(); 389 - const activeId = currentTheme?.themeId || 'basic'; 389 + const activeId = currentTheme?.themeId || 'peek'; 390 390 391 391 loading.remove(); 392 392