style(gateway): biome format fix for imageResizer (unblock CI gate)

imageResizer.ts had a line exceeding the print width that biome flagged
as a formatter error, failing the Build & Deploy biome check. Re-format
the file. No logic change.
This commit is contained in:
asepharyana
2026-08-15 23:11:31 +07:00
parent 9c83ec86cc
commit c590a8be27
@@ -43,7 +43,9 @@ export async function resizeImageForVision(
originalSize: buf.length,
originalFormat: inputFormat,
resizedSize: resized.length,
reductionPct: Math.round(((buf.length - resized.length) / buf.length) * 100),
reductionPct: Math.round(
((buf.length - resized.length) / buf.length) * 100,
),
},
"Image resized for vision analysis (JPEG)",
);