Commit 0d4652cc authored by tom's avatar tom

fix tests

parent 6322a562
...@@ -63,7 +63,7 @@ const NftImage = ({ url, className, fallbackPadding, objectFit }: Props) => { ...@@ -63,7 +63,7 @@ const NftImage = ({ url, className, fallbackPadding, objectFit }: Props) => {
fallback={ url && isLoading ? <Skeleton/> : <Fallback className={ className } padding={ fallbackPadding }/> } fallback={ url && isLoading ? <Skeleton/> : <Fallback className={ className } padding={ fallbackPadding }/> }
onError={ handleLoadError } onError={ handleLoadError }
onLoad={ handleLoad } onLoad={ handleLoad }
loading="lazy" loading={ url ? 'lazy' : undefined }
/> />
</AspectRatio> </AspectRatio>
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment