diff --git a/src/pages/Profile/Profile.js b/src/pages/Profile/Profile.js index 249788c..62b46e8 100644 --- a/src/pages/Profile/Profile.js +++ b/src/pages/Profile/Profile.js @@ -238,7 +238,7 @@ export const Profile = observer(() => { render: (text, record) => { return ( - {moment(record.created_at.toLocaleString('en-GB')).format("MM-DD-YYYY HH:mm:ss")} + {moment(new Date (record.created_at).toISOString().replace('Z', ' ').replace('T', ' ')).format("MM-DD-YYYY HH:mm:ss")} ); },