Skip to content

Commit 9e783b7

Browse files
committed
Hotfix: unused vars
1 parent 27c9c61 commit 9e783b7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/app/(auth)/sign-up/actions.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ const checkImage = async (url: string) => {
66
let blob_image = null;
77
try {
88
const im = await fetch(url);
9-
console.log(im);
109
blob_image = await im.blob();
11-
console.log(blob_image);
12-
} catch (e) {
10+
} catch {
1311
throw new Error("Image isn't valid");
1412
}
1513

0 commit comments

Comments
 (0)