styles: refactor codebase base style

This commit is contained in:
2026-06-17 14:46:12 +05:30
parent 182d4ac293
commit 15f54372f4
43 changed files with 161 additions and 268 deletions

View File

@@ -40,7 +40,7 @@ export function useUserColumns({
accessorKey: 'first_name',
header: 'Name',
cell: ({ row }) => (
<span className="font-medium">
<span>
{[row.original.first_name, row.original.last_name].filter(Boolean).join(' ') ||
row.original.username}
</span>