From 77364488c25b7368c4b2b61412b8a10f95a08ed9 Mon Sep 17 00:00:00 2001 From: Fred KISSIE Date: Thu, 30 Oct 2025 00:21:59 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20show=20action=20on=20the=20right?= =?UTF-8?q?=20of=20the=20column?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/BlueprintsTable.tsx | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/src/components/BlueprintsTable.tsx b/src/components/BlueprintsTable.tsx index c2107ffc..3400f88d 100644 --- a/src/components/BlueprintsTable.tsx +++ b/src/components/BlueprintsTable.tsx @@ -158,22 +158,24 @@ export default function BlueprintsTable({ blueprints, orgId }: Props) { { id: "actions", header: () => { - return ( - - {t("actions")} - - ); + return null; }, cell: ({ row }) => { return ( - + + View details{" "} + + + + ); } }