From f147dc3f891393535962d41c232ab691aac210ee Mon Sep 17 00:00:00 2001 From: Scrubs McBarkley Date: Wed, 25 Mar 2026 11:04:08 +0000 Subject: [PATCH] fix: prefix unused staffName with underscore to satisfy ESLint Co-Authored-By: Paperclip --- apps/web/src/components/CalendarSync.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/CalendarSync.tsx b/apps/web/src/components/CalendarSync.tsx index 887d05e..795d1c2 100644 --- a/apps/web/src/components/CalendarSync.tsx +++ b/apps/web/src/components/CalendarSync.tsx @@ -6,7 +6,7 @@ interface Props { staffName: string; } -export function CalendarSyncSection({ staffId, staffName }: Props) { +export function CalendarSyncSection({ staffId }: Props) { const [token, setToken] = useState(null); const [loading, setLoading] = useState(false); const [actionLoading, setActionLoading] = useState<"generate" | "revoke" | null>(null);