Skip to content

Commit

Permalink
fix inverse logic
Browse files Browse the repository at this point in the history
  • Loading branch information
brunobar79 authored Dec 23, 2024
1 parent ccb5b3f commit c1e87c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/skeleton/Skeleton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function Skeleton({
skeletonColor?: string;
width?: number;
}) {
if (animated && IS_TEST) {
if (animated && !IS_TEST) {
return (
<MaskedView maskElement={<Wrapper style={style}>{children}</Wrapper>} style={{ flex: 1 }}>
<ShimmerWrapper color={skeletonColor}>
Expand Down

0 comments on commit c1e87c3

Please sign in to comment.