diff --git a/dev-portal/src/components/Admin/Accounts/AccountsTableColumns.jsx b/dev-portal/src/components/Admin/Accounts/AccountsTableColumns.jsx index a163e780e..7e97d1ce7 100644 --- a/dev-portal/src/components/Admin/Accounts/AccountsTableColumns.jsx +++ b/dev-portal/src/components/Admin/Accounts/AccountsTableColumns.jsx @@ -49,7 +49,7 @@ export const IsAdmin = { export const DateRegistered = { id: 'DateRegistered', title: 'Date registered', - render: account => formatDate(account.DateRegistered), + render: account => account.DateRegistered ? formatDate(account.DateRegistered) : '-', ordering: { iteratee: 'DateRegistered' }