Skip to content

Commit

Permalink
refactor: 使用しない変数を削除
Browse files Browse the repository at this point in the history
  • Loading branch information
weweweok committed Apr 18, 2024
1 parent b921163 commit 1001c84
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions islands/ImageForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { useSignal } from "https://esm.sh/*@preact/signals@1.2.1";
export default function ImageForm() {
const isActiveFileUpLoderDisable = useSignal(false);
const buttonDisable = useSignal(false);
const isAsciiArtpreviewHide = useSignal(true);
const previewUploadImage = useSignal(false);
const isAnnounsing = useSignal(false);

Expand Down Expand Up @@ -45,7 +44,6 @@ export default function ImageForm() {
});
const asciiArtBlob = await response.blob();
const blobUrl = await window.URL.createObjectURL(asciiArtBlob);
isAsciiArtpreviewHide.value = false;
const fileData = new FileReader();
fileData.onload = () => {
const asciiArtPreview = document.getElementById(
Expand Down

0 comments on commit 1001c84

Please sign in to comment.