diff --git a/src/routes/(console)/project-[region]-[project]/auth/user-[user]/identities/+page.svelte b/src/routes/(console)/project-[region]-[project]/auth/user-[user]/identities/+page.svelte index c1d02a90f..a15f62bb0 100644 --- a/src/routes/(console)/project-[region]-[project]/auth/user-[user]/identities/+page.svelte +++ b/src/routes/(console)/project-[region]-[project]/auth/user-[user]/identities/+page.svelte @@ -13,18 +13,17 @@ export let data; const columns = writable([ - { id: '$id', title: 'Identity ID', type: 'string', width: 200 }, - { id: 'provider', title: 'Provider', type: 'string', width: 80 }, - { id: 'providerUid', title: 'Provider UID', type: 'string', hide: true, width: 80 }, - { id: 'providerEmail', title: 'Email', type: 'string', width: 80 }, + { id: '$id', title: 'Identity ID', type: 'string' }, + { id: 'provider', title: 'Provider', type: 'string' }, + { id: 'providerUid', title: 'Provider UID', type: 'string', hide: true }, + { id: 'providerEmail', title: 'Email', type: 'string' }, { id: 'providerAccessTokenExpiry', title: 'Expiry Date', - type: 'datetime', - width: 60 + type: 'datetime' }, - { id: '$createdAt', title: 'Created', type: 'datetime', width: 80 }, - { id: '$updatedAt', title: 'Updated', type: 'datetime', hide: true, width: 80 } + { id: '$createdAt', title: 'Created', type: 'datetime' }, + { id: '$updatedAt', title: 'Updated', type: 'datetime', hide: true } ]);