experiments in a post-browser web
10
fork

Configure Feed

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

fix(config): align startupFeature schema default with actual default

The schema specified 'Settings' as the default but the actual defaults
object used 'peek://app/settings/settings.html'. This inconsistency
could cause bugs when the default value is used.

Changed schema default to match the actual default URL to ensure
consistency across the codebase.

+1 -1
+1 -1
app/config.js
··· 32 32 "startupFeature": { 33 33 "description": "Address of what to load at startup, if anything", 34 34 "type": "string", 35 - "default": "Settings" 35 + "default": "peek://app/settings/settings.html" 36 36 }, 37 37 "showTrayIcon": { 38 38 "description": "Whether to show app icon in system tray",