diff options
-rw-r--r-- | src/components/Main.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/Main.tsx b/src/components/Main.tsx index ee8dbab..fc587e2 100644 --- a/src/components/Main.tsx +++ b/src/components/Main.tsx @@ -96,10 +96,10 @@ const SorlangPage: React.FC = () => { const [isPending, startTransition] = useTransition(); const onClick = () => { - startTransition(async() => { - const - }) - } + startTransition(async () => { + const lol = "lmao"; + }); + }; const handleExtractTextFromImage = async () => { if (!pastedImageFile) { alert("No image to extract text from!"); |