Skip to content

Commit

Permalink
fix(redux-state): log webXPanel config object as object
Browse files Browse the repository at this point in the history
  • Loading branch information
damienbutt committed Apr 12, 2022
1 parent 1a358bf commit b70af9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/src/redux/state/webXPanel/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const webXPanelSlice = createSlice({
action: PayloadAction<Partial<WebXPanelConfigParams>>,
) => {
state.config = action.payload;
console.log(`WebXPanel Config: ${state.config}`);
console.log("WebXPanel Config: ", state.config);
},
setWebXPanelVersion: (
state: IWebXPanel,
Expand Down

0 comments on commit b70af9c

Please sign in to comment.