Skip to content

Commit

Permalink
fix(homepage): query community builder webp images (#44)
Browse files Browse the repository at this point in the history
* fix(homepage): query community builder webp images

We recently changed Ecosystem images from PNG to WEBP which
inadvertently broke this component.

* style: drop linter change
  • Loading branch information
wbnns authored Oct 4, 2023
1 parent 81ee08a commit f0dff3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/JoinTheCommunity/JoinTheCommunity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function JoinTheCommunity() {
{partners.map((partner) => (
<div className="relative h-[108px] w-[108px] overflow-hidden rounded-[3px]" key={partner}>
<Image
src={`/images/partners/${partner}.png`}
src={`/images/partners/${partner}.webp`}
alt={`${partner} logo`}
fill
style={{ objectFit: 'cover' }}
Expand All @@ -52,7 +52,7 @@ export function JoinTheCommunity() {
{partners.map((partner) => (
<div className="relative h-[60px] w-[60px] overflow-hidden rounded-[3px]" key={partner}>
<Image
src={`/images/partners/${partner}.png`}
src={`/images/partners/${partner}.webp`}
alt={`${partner} logo`}
fill
style={{ objectFit: 'cover' }}
Expand Down

0 comments on commit f0dff3d

Please sign in to comment.