Skip to content

Commit

Permalink
fix: fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
charIeszhao committed Mar 21, 2024
1 parent 04ed8f7 commit a2b1423
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,13 @@ function Invitations() {
dataIndex: 'sentAt',
colSpan: 4,
title: t('invitation_sent'),
render: ({ createdAt }) => <span>{format(createdAt, 'MMM Lo, yyyy')}</span>,
render: ({ createdAt }) => <span>{format(createdAt, 'MMM do, yyyy')}</span>,
},
{
dataIndex: 'expiresAt',
colSpan: 4,
title: t('expiration_date'),
render: ({ expiresAt }) => <span>{format(expiresAt, 'MMM Lo, yyyy')}</span>,
render: ({ expiresAt }) => <span>{format(expiresAt, 'MMM do, yyyy')}</span>,
},
{
dataIndex: 'actions',
Expand Down

0 comments on commit a2b1423

Please sign in to comment.