Skip to content

Commit 03bda50

Browse files
committed
UGOKU?
1 parent d24fcc8 commit 03bda50

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/app/image_generator/useImageGenerator.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,9 @@ const createUnsplashURL = (values: ImageGeneratorForm) => {
126126
random: Math.random().toString(),
127127
});
128128

129-
return `https://picsum.photos/${wight}/${height}.${type}?${params}`;
129+
const url = `https://picsum.photos/${wight}/${height}.${type}?${params}`;
130+
// console.log(url);
131+
return url;
130132
};
131133

132134
// https://placehold.jp/

0 commit comments

Comments
 (0)