We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d24fcc8 commit 03bda50Copy full SHA for 03bda50
1 file changed
src/app/image_generator/useImageGenerator.ts
@@ -126,7 +126,9 @@ const createUnsplashURL = (values: ImageGeneratorForm) => {
126
random: Math.random().toString(),
127
});
128
129
- return `https://picsum.photos/${wight}/${height}.${type}?${params}`;
+ const url = `https://picsum.photos/${wight}/${height}.${type}?${params}`;
130
+ // console.log(url);
131
+ return url;
132
};
133
134
// https://placehold.jp/
0 commit comments