From 8be52e2fa3bddff4d052310c6541ac53a1e32554 Mon Sep 17 00:00:00 2001 From: Mythie Date: Thu, 14 Sep 2023 14:50:17 +1000 Subject: [PATCH] fix: final reference to created column --- apps/web/src/app/(dashboard)/documents/data-table.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/app/(dashboard)/documents/data-table.tsx b/apps/web/src/app/(dashboard)/documents/data-table.tsx index b8c735b59..7d2f18a27 100644 --- a/apps/web/src/app/(dashboard)/documents/data-table.tsx +++ b/apps/web/src/app/(dashboard)/documents/data-table.tsx @@ -53,8 +53,8 @@ export const DocumentsDataTable = ({ results }: DocumentsDataTableProps) => { columns={[ { header: 'Created', - accessorKey: 'created', - cell: ({ row }) => , + accessorKey: 'createdAt', + cell: ({ row }) => , }, { header: 'Title',