From 073549cc073089d202400a5f6aaf7355bd18ffe2 Mon Sep 17 00:00:00 2001 From: CartSnitch Engineer Bot Date: Wed, 1 Apr 2026 19:49:14 +0000 Subject: [PATCH] fix(frontend): remove unused React import from Dashboard.tsx Removes the unused `import React from 'react'` line from Dashboard.tsx to resolve TS6133 error in lighthouse CI. No other code in the file references the React namespace. Co-Authored-By: Paperclip --- src/pages/Dashboard.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pages/Dashboard.tsx b/src/pages/Dashboard.tsx index 9e65c95..c3f428a 100644 --- a/src/pages/Dashboard.tsx +++ b/src/pages/Dashboard.tsx @@ -1,4 +1,3 @@ -import React from 'react' import { Link } from 'react-router-dom' import { authClient } from '../lib/auth-client.ts' import { usePurchases, usePriceAlerts } from '../hooks/useApi.ts'