diff --git a/dashboard/src/pages/Users.tsx b/dashboard/src/pages/Users.tsx
index e632a5c..5d36c5b 100644
--- a/dashboard/src/pages/Users.tsx
+++ b/dashboard/src/pages/Users.tsx
@@ -185,6 +185,8 @@ export default function Users() {
Email |
Created At |
+ Signup Methods |
+ Roles |
Verified |
Actions |
@@ -195,7 +197,11 @@ export default function Users() {
return (
{user.email} |
- {dayjs(user.created_at).format('MMM DD, YYYY')} |
+
+ {dayjs(user.created_at * 1000).format('MMM DD, YYYY')}
+ |
+ {user.signup_methods} |
+ {user.roles.join(', ')} |
|