From 1f75d70d4e86ce8a426c6b478f9d5439e04c5166 Mon Sep 17 00:00:00 2001 From: Pablo Lara Date: Thu, 26 Sep 2024 16:05:17 +0200 Subject: [PATCH] fix: fix the providerId, the value coming from the API changed --- components/providers/table/columns-provider.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/providers/table/columns-provider.tsx b/components/providers/table/columns-provider.tsx index 2b7ecbb5a5..f104fcec69 100644 --- a/components/providers/table/columns-provider.tsx +++ b/components/providers/table/columns-provider.tsx @@ -40,15 +40,15 @@ export const ColumnsProvider: ColumnDef[] = [ }, }, { - accessorKey: "id", + accessorKey: "uid", header: ({ column }) => ( ), cell: ({ row }) => { const { - attributes: { provider_id }, + attributes: { uid }, } = getProviderData(row); - return ; + return ; }, }, {