Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMalfait committed Jun 18, 2024
1 parent 3ab7d03 commit 66e2456
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const StyledImageContainer = styled.div<{ loaded: string }>`
`}
`;

const StyledImage = styled(img)<{ loaded: string }>`
const StyledImage = styled.img<{ loaded: string }>`
opacity: ${({ loaded }) => (loaded === 'true' ? 1 : 0)};
transition: opacity 250ms ease-in-out;
`;
Expand Down

0 comments on commit 66e2456

Please sign in to comment.