Add missing space between "PNG" and "GIF" in error message

This commit is contained in:
mdPlusPlus 2023-02-16 01:15:25 +01:00
parent 1d6ed17ac7
commit 13c1b207f4
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ export async function autoScaleForAvatar<T extends { contentType: string; blob:
attachment.contentType !== IMAGE_JPEG
) {
// nothing to do
throw new Error('Cannot autoScaleForAvatar another file than PNG,GIF or JPEG.');
throw new Error('Cannot autoScaleForAvatar another file than PNG, GIF or JPEG.');
}
window.log.info('autoscale for avatar', maxMeasurements);