fix: remove unused variable

This commit is contained in:
Li Xin 2025-04-25 10:34:35 +08:00
parent eb0d86fa73
commit bd583997e3

View File

@ -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(() => {