fix run-time issue

installHook.js:1 TypeError: Cannot read properties of undefined (reading '0')
    at index-rjtklWbg.js:488:22731
    at Array.map (<anonymous>)
This commit is contained in:
2025-11-12 00:25:30 +03:00
parent 8b55162e06
commit e3483eec10
2 changed files with 13 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
import { createSlice } from "@reduxjs/toolkit";
import { RootState } from "redux/store";
interface ThemeState {
export interface ThemeState {
themeName: string;
}