Skip to content

Commit

Permalink
Update Support.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaswiesehan authored Oct 4, 2023
1 parent 6b36129 commit e2927a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/landing-page/Support.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const Support: FC = () => {
alt={label}
width={logo.width}
height={logo.height}
className={`${supported ? 'opacity-100' : 'opacity-25'}`}
className={`${supported === true ? 'opacity-100' : 'opacity-25'}`}
/>
</Tooltip.Trigger>
<Tooltip.Content
Expand Down Expand Up @@ -113,7 +113,7 @@ export const Support: FC = () => {
alt={label}
width={logo.width}
height={logo.height}
className={`${supported ? 'opacity-100' : 'opacity-25'}`}
className={`${supported === true ? 'opacity-100' : 'opacity-25'}`}
/>
</Tooltip.TooltipTrigger>
<Tooltip.Content
Expand Down

0 comments on commit e2927a7

Please sign in to comment.