From 75e16e89589e7b113761caaf019dd637b8ead295 Mon Sep 17 00:00:00 2001 From: Duncan Ragsdale <88173870+Thistleman@users.noreply.github.com> Date: Wed, 10 Jul 2024 18:07:34 -0700 Subject: [PATCH] fixed small linting bug Signed-off-by: Duncan Ragsdale <88173870+Thistleman@users.noreply.github.com> --- src/app/modules/homepage/demoTable.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/modules/homepage/demoTable.tsx b/src/app/modules/homepage/demoTable.tsx index 5cb6185..d12ad56 100644 --- a/src/app/modules/homepage/demoTable.tsx +++ b/src/app/modules/homepage/demoTable.tsx @@ -34,9 +34,8 @@ export default function DemoBoard() { renderCell: (params: any) => { const {value} = params; if (value !== null || value !== undefined) { - const link = `/profile?u=${value}`; return ( -
+
{value}
);