From 32dfc4158936674064228f45616816031967ae85 Mon Sep 17 00:00:00 2001 From: Walidoux Date: Wed, 19 Apr 2023 17:16:05 +0000 Subject: [PATCH] fix(src): temp unused vars --- src/App.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 2980536..d59a2f6 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,9 +8,9 @@ import { } from './config/GameDownloader' const Main: React.FC = () => { - const [error, setError] = useState('') - const [response, setResponse] = useState('') - const [loading, setLoading] = useState(false) + const [_error, setError] = useState('') + const [_response, setResponse] = useState('') + const [_loading, setLoading] = useState(false) const callback = (message: string, error = false): void => { if (error) return setError(message)