fix(src): temp unused vars

This commit is contained in:
Walid 2023-04-19 17:16:05 +00:00
parent 4b4f58a426
commit 32dfc41589
Signed by: Walidoux
GPG Key ID: CCF21881FE8BEBAF

View File

@ -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)