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