fix: remove unused variable
This commit is contained in:
parent
eb0d86fa73
commit
bd583997e3
|
|
@ -22,7 +22,7 @@ function Image({
|
||||||
alt: string;
|
alt: string;
|
||||||
fallback?: React.ReactNode;
|
fallback?: React.ReactNode;
|
||||||
}) {
|
}) {
|
||||||
const [isLoading, setIsLoading] = useState(true);
|
const [, setIsLoading] = useState(true);
|
||||||
const [isError, setIsError] = useState(false);
|
const [isError, setIsError] = useState(false);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue