remove lazy loading

This commit is contained in:
array-in-a-matrix 2023-04-08 00:45:58 -04:00
parent 2ffc26b0dc
commit 7a0fe843dc
2 changed files with 0 additions and 3 deletions

View file

@ -55,7 +55,6 @@ const EmojiGroup = React.memo(({ name, groupEmojis }) => {
unicode: emoji.unicode,
shortcodes: emoji.shortcodes?.toString(),
hexcode: emoji.hexcode,
loading: 'lazy',
}),
base: TWEMOJI_BASE_URL,
})
@ -65,7 +64,6 @@ const EmojiGroup = React.memo(({ name, groupEmojis }) => {
<img
className="emoji"
draggable="false"
loading="lazy"
alt={emoji.shortcode}
unicode={`:${emoji.shortcode}:`}
shortcodes={emoji.shortcode}

View file

@ -57,7 +57,6 @@ function StickerBoard({ roomId, onSelect }) {
alt={sticker.shortcode}
title={sticker.body ?? sticker.shortcode}
data-mx-sticker={sticker.mxc}
loading="lazy"
/>
))}
</div>