ignore ctx is null early return

This commit is contained in:
2025-01-07 23:52:48 +08:00
parent 001eca79f6
commit 20a152b899
14 changed files with 3 additions and 25 deletions

View File

@@ -28,7 +28,6 @@ interface ImageResponse {
}
export function ImageGenDrawer({ disableFactor }: Props) {
const ctx = useContext(AppContext);
if (ctx === null) return <></>;
const [showGenImage, setShowGenImage] = useState(false);
const [imageGenPrompt, setImageGenPrompt] = useState("");