fix: prefix unused staffName with underscore to satisfy ESLint

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Scrubs McBarkley
2026-03-25 11:04:08 +00:00
parent c5977ef573
commit f147dc3f89
+1 -1
View File
@@ -6,7 +6,7 @@ interface Props {
staffName: string;
}
export function CalendarSyncSection({ staffId, staffName }: Props) {
export function CalendarSyncSection({ staffId }: Props) {
const [token, setToken] = useState<string | null>(null);
const [loading, setLoading] = useState(false);
const [actionLoading, setActionLoading] = useState<"generate" | "revoke" | null>(null);