Skip to content

Commit

Permalink
fix: closed date column shows correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavkparti committed Aug 15, 2023
1 parent ffee849 commit 0410212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/TransfersContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const TransfersProvider = ({ children }) => {
receiver_wallet: row.destination_wallet,
created_date: row.created_at,
initiated_by: row.originating_wallet,
closed_date: row.cloased_at,
closed_date: row.closed_at,
status: row.state,
};
});
Expand Down

0 comments on commit 0410212

Please sign in to comment.