Javascript – How to initialize redux slice with enum value?
I am trying to set initial state of redux slice with a enum value, but it throws Uncaught TypeError: undefined has no properties. The code is: export const themeTokenSlice = createSlice({ name: "themeToken", initialState: darkThemeToken, reducers: { toggleThemeToken: (state) =>…