From 623f9a080fc12352680eec48be4e247303b88683 Mon Sep 17 00:00:00 2001 From: Anirudh Oppiliappan Date: Mon, 16 Feb 2026 09:13:26 +0200 Subject: [PATCH] avatar: disable image resizing for now Until we can figure out why this 403s on Cloudflare's end. Signed-off-by: Anirudh Oppiliappan --- avatar/src/index.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/avatar/src/index.js b/avatar/src/index.js index 3f3b6b88..ee303c04 100644 --- a/avatar/src/index.js +++ b/avatar/src/index.js @@ -244,14 +244,14 @@ You can't use this directly unfortunately since all requests are signed and may let avatarResponse; if (resizeToTiny) { avatarResponse = await fetch(avatarUrl, { - cf: { - image: { - width: 32, - height: 32, - fit: "cover", - format: "webp", - }, - }, + // cf: { + // image: { + // width: 32, + // height: 32, + // fit: "cover", + // format: "webp", + // }, + // }, }); } else { avatarResponse = await fetch(avatarUrl); -- 2.51.2