diff --git a/src/components/DiffArrow.tsx b/src/components/DiffArrow.tsx index 12ecfd4..6007683 100644 --- a/src/components/DiffArrow.tsx +++ b/src/components/DiffArrow.tsx @@ -52,7 +52,7 @@ Styled.DiffArrowContainer = styled.span` ${({ direction }) => ({ right: css` - transform: scaleX(1); + transform: scaleX(1); `, left: css` transform: scaleX(-1); @@ -62,6 +62,6 @@ Styled.DiffArrowContainer = styled.span` `, down: css` transform: rotate(90deg); - ` + `, }[direction || 'right'])} `;