Skip to content

Commit

Permalink
add version tag to optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
neokry committed Nov 28, 2023
1 parent a8346e4 commit 3adfea8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/web/src/modules/dao/components/DaoCard/DaoCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ export const DaoCard = ({
<Image
priority
layout="fill"
src={!imgErr ? getFetchableUrl(tokenImage) || '' : '/ImageError.svg'}
src={
!imgErr ? getFetchableUrl(tokenImage) + '&v=2' || '' : '/ImageError.svg'
}
onError={() => setImgErr(true)}
sizes="100vw"
alt={`${collectionName} image`}
Expand Down

0 comments on commit 3adfea8

Please sign in to comment.