Skip to content

Commit

Permalink
fix: column order
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Nov 7, 2022
1 parent b94706d commit 0d7083e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/reducers/appReducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ const appReducer = (state = initialState, action) => {
const transformedData = action.payload.map(item => ({
...item,
icon: item.cw_org.icon,
registry_project_id: item.cw_project.projectName,
project_name: item.cw_project.projectId,
registry_project_id: item.cw_project.projectId,
project_name: item.cw_project.projectName,
vintage_year: item.cw_unit.vintageYear,
action: item.mode,
quantity: item.amount,
Expand Down

0 comments on commit 0d7083e

Please sign in to comment.