From 0b696b852ea3a5a5ff0791e9e0e735595d74c42e Mon Sep 17 00:00:00 2001 From: burnettk Date: Thu, 6 Feb 2025 17:03:24 -0500 Subject: [PATCH] Fix: unused-imports/no-unused-vars - Renamed 'event' to '_event'. --- .../src/a-spiffui-v3/components/ErrorDisplay.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spiffworkflow-frontend/src/a-spiffui-v3/components/ErrorDisplay.tsx b/spiffworkflow-frontend/src/a-spiffui-v3/components/ErrorDisplay.tsx index edff8b927..6ce6691d5 100644 --- a/spiffworkflow-frontend/src/a-spiffui-v3/components/ErrorDisplay.tsx +++ b/spiffworkflow-frontend/src/a-spiffui-v3/components/ErrorDisplay.tsx @@ -179,7 +179,7 @@ export function errorDisplayStateless( export default function ErrorDisplay() { const { error: errorObject, removeError } = useAPIError(); - const handleRemoveError = (event: SyntheticEvent) => { + const handleRemoveError = (_event: SyntheticEvent) => { removeError(); }; let errorTag = null;