diff --git a/resources/js/helpers/image.ts b/resources/js/helpers/image.ts index b1f264e..afe62f4 100644 --- a/resources/js/helpers/image.ts +++ b/resources/js/helpers/image.ts @@ -5,7 +5,7 @@ type ImageLoadCallback = (url: string) => void; export const imageLoad = ( url: string, callback: ImageLoadCallback, - postfix = "h=50" + postfix = "size=thumb" ) => { callback(`${url}?${postfix}`); const tmp = new Image();