remove further cast

This commit is contained in:
Peter Clement 2025-01-06 12:53:10 +00:00
parent a87380b0df
commit 48948712b9
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ interface ThemeState {
export class ThemeStore extends BudiStore<ThemeState> {
constructor() {
super({
theme: DefaultAppTheme as Theme,
theme: DefaultAppTheme,
customTheme: {},
})
}