From fe9f1f8f785fe541c3b462790345b0a78f172b44 Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Mon, 30 Mar 2026 11:24:17 +0000 Subject: [PATCH] fix(GRO-286): remove unused useCallback import and eslint-disable - ReportCards.tsx: remove unused useCallback from imports - AccountSettings.tsx: remove unused eslint-disable-next-line directive Co-Authored-By: Paperclip --- apps/web/src/portal/sections/AccountSettings.tsx | 1 - apps/web/src/portal/sections/ReportCards.tsx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/web/src/portal/sections/AccountSettings.tsx b/apps/web/src/portal/sections/AccountSettings.tsx index 31e5da5..eb69ed0 100644 --- a/apps/web/src/portal/sections/AccountSettings.tsx +++ b/apps/web/src/portal/sections/AccountSettings.tsx @@ -270,7 +270,6 @@ function ManagePets({ sessionId, readOnly }: { sessionId: string | null; readOnl { setEditingPetId(null); setShowAddForm(false); }} onCancel={() => { setEditingPetId(null); setShowAddForm(false); }} /> diff --git a/apps/web/src/portal/sections/ReportCards.tsx b/apps/web/src/portal/sections/ReportCards.tsx index f8ced2a..018b376 100644 --- a/apps/web/src/portal/sections/ReportCards.tsx +++ b/apps/web/src/portal/sections/ReportCards.tsx @@ -1,4 +1,4 @@ -import { useState, useEffect, useCallback, useRef } from "react"; +import { useState, useEffect, useRef } from "react"; import { FileText, Share2, Calendar, Smile, Meh, ChevronRight, Loader2 } from "lucide-react"; type MoodKey = "calm" | "cooperative" | "anxious" | "wiggly";