From 18eee381e1c45717059e34b1a172697f391ebb7d Mon Sep 17 00:00:00 2001 From: Francis Gyimah Date: Mon, 18 May 2026 16:37:56 +0000 Subject: [PATCH] [DEV-23130] Added lazy loading and async decoding to gallery images --- src/components/Media/Media.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Media/Media.tsx b/src/components/Media/Media.tsx index 0711479..91ba5fd 100644 --- a/src/components/Media/Media.tsx +++ b/src/components/Media/Media.tsx @@ -55,6 +55,8 @@ export function Media({ className, image, style, title }: Props) { sizes={`(max-width: 992px) 800px, (max-width: 576px) 400px, 1200px`} style={style} title={title} + loading="lazy" + decoding="async" /> ); }