We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27c9c61 commit 9e783b7Copy full SHA for 9e783b7
src/app/(auth)/sign-up/actions.tsx
@@ -6,10 +6,8 @@ const checkImage = async (url: string) => {
6
let blob_image = null;
7
try {
8
const im = await fetch(url);
9
- console.log(im);
10
blob_image = await im.blob();
11
- console.log(blob_image);
12
- } catch (e) {
+ } catch {
13
throw new Error("Image isn't valid");
14
}
15
0 commit comments