Skip to content

Commit

Permalink
chore: remove transition delay
Browse files Browse the repository at this point in the history
  • Loading branch information
dbismut committed Jan 2, 2022
1 parent e899782 commit 14aa7e5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Image/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,7 @@ export const Image: React.FC<ImagePropTypes> = function ({
);

const transition =
fadeInDuration > 0
? `opacity ${fadeInDuration}ms ${fadeInDuration}ms`
: undefined;
fadeInDuration > 0 ? `opacity ${fadeInDuration}ms` : undefined;

const placeholder = (
<div
Expand Down

0 comments on commit 14aa7e5

Please sign in to comment.