From 3ea691ed37bf95703c24adab80cccb2450a615c5 Mon Sep 17 00:00:00 2001 From: Stefan Verhoeven Date: Fri, 2 Aug 2024 13:05:19 +0200 Subject: [PATCH] Revert "Add lint errors to test ci reporting" This reverts commit 640dcde587af03ed697950c24844e9648a50d441. --- apps/class-solid/src/components/Nav.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/apps/class-solid/src/components/Nav.tsx b/apps/class-solid/src/components/Nav.tsx index c4645e0..ca8cc53 100644 --- a/apps/class-solid/src/components/Nav.tsx +++ b/apps/class-solid/src/components/Nav.tsx @@ -2,18 +2,13 @@ import { useLocation } from "@solidjs/router"; export default function Nav() { const location = useLocation(); - const foo = 'bar' - if (42 == '42') { - console.log('foo') - } - const active = (path: string) => path === location.pathname ? "border-sky-600" : "border-transparent hover:border-sky-600"; return (