Skip to content
This repository was archived by the owner on May 6, 2022. It is now read-only.

Commit 0ec1c32

Browse files
committed
fix(Card): Fix linting
1 parent dd56a23 commit 0ec1c32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cards/utils/CardOverlay.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ const Overlay = styled.div<{
2727
position: absolute;
2828
right: 0;
2929
z-index: 20;
30-
height: ${(props) => props.showOverlay === true ? '100%' : null};
31-
width: ${(props) => props.showOverlay === true ? '100%' : null};
30+
height: ${(props) => props.showOverlay ? '100%' : null};
31+
width: ${(props) => props.showOverlay ? '100%' : null};
3232
`;
3333

3434
export default Overlay;

0 commit comments

Comments
 (0)