This commit is contained in:
Peter Clement 2025-04-08 10:47:49 +01:00
parent 83aa2a59fc
commit dc0b9d489f
1 changed files with 2 additions and 0 deletions

View File

@ -93,6 +93,7 @@ export const INITIAL_APP_META_STATE: AppMetaState = {
background_color: "", background_color: "",
theme_color: "", theme_color: "",
start_url: "", start_url: "",
screenshots: [],
}, },
scripts: [], scripts: [],
} }
@ -192,6 +193,7 @@ export class AppMetaStore extends BudiStore<AppMetaState> {
background_color: state.pwa?.background_color || "", background_color: state.pwa?.background_color || "",
theme_color: state.pwa?.theme_color || "", theme_color: state.pwa?.theme_color || "",
start_url: state.pwa?.start_url || "", start_url: state.pwa?.start_url || "",
screenshots: state.pwa?.screenshots || [],
}, },
})) }))
} }