Skip to content

Commit

Permalink
test: deploy generates multiple commits fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
rjsduf0503 committed May 9, 2023
1 parent 1942deb commit 9507a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/imageProcessing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export async function imageProcessing({
src,
}: ImageProcessingProps): Promise<ImageProcessingResult> {
if (maxWidth <= 0) {
throw new Error('maxWidth must be greater than zero');
throw new Error('maxWidth parameter must be greater than zero');
}

const image = await createImageBitmap(await fetch(src).then((res) => res.blob()));
Expand Down

0 comments on commit 9507a48

Please sign in to comment.