diff --git a/src/components/Common/FanInfo/index.jsx b/src/components/Common/FanInfo/index.jsx index 513d943..57f5a81 100644 --- a/src/components/Common/FanInfo/index.jsx +++ b/src/components/Common/FanInfo/index.jsx @@ -49,7 +49,7 @@ function FanInfo(props) { ], oddRowBGC: "#042444", evenRowBGC: "#042c4c", - columnWidth: [70, 96], + columnWidth: [50, 144], rowNum, hoverPause: false, data: attachStyle(data), diff --git a/src/store/features/fanInfo.js b/src/store/features/fanInfo.js index 7729cae..5ccf3c2 100644 --- a/src/store/features/fanInfo.js +++ b/src/store/features/fanInfo.js @@ -12,7 +12,7 @@ const fanInfoSlice = createSlice({ initialState, reducers: { setInfo: (state, action) => { - state.fanInfo = action.payload; + state.fanInfo = action.payload.fanInfo; }, }, });