From 372bd3296ad7262cb570783abefe7f6c77867227 Mon Sep 17 00:00:00 2001 From: Zai Shi Date: Thu, 16 May 2024 16:13:18 +0200 Subject: [PATCH] fixed ux problems --- .../src/components/data-table/user-table.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/stack-server/src/components/data-table/user-table.tsx b/packages/stack-server/src/components/data-table/user-table.tsx index 57d72c204..0a275e7e0 100644 --- a/packages/stack-server/src/components/data-table/user-table.tsx +++ b/packages/stack-server/src/components/data-table/user-table.tsx @@ -134,17 +134,17 @@ function capitalizeFirstLetter(s: string) { } export const commonUserColumns: ColumnDef[] = [ - { - accessorKey: "id", - header: ({ column }) => , - cell: ({ row }) => {row.original.id}, - }, { accessorKey: "profileImageUrl", header: ({ column }) => , cell: ({ row }) => , enableSorting: false, }, + { + accessorKey: "id", + header: ({ column }) => , + cell: ({ row }) => {row.original.id}, + }, { accessorKey: "displayName", header: ({ column }) => ,