Skip to content

Commit b835303

Browse files
committed
Stop defaulting to auto, as it has no effect
1 parent d974f48 commit b835303

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ImageTransformer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ protected function getFormatValue(ImageTransform $imageTransform): string
126126

127127
return match ($imageTransform->format) {
128128
'jpg' => 'jpeg',
129-
default => $imageTransform->format ?? 'auto',
129+
default => $imageTransform->format,
130130
};
131131
}
132132

0 commit comments

Comments
 (0)