Skip to content

Commit 9970528

Browse files
committed
fix(lint): linter error
1 parent 9ec16c2 commit 9970528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Header/VersionSwitch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const VersionLabel = styled.span<{ enabled: boolean }>`
1111
background: ${({ theme, enabled }) => (enabled ? theme.primary1 : 'none')};
1212
color: ${({ theme, enabled }) => (enabled ? theme.white : theme.text1)};
1313
font-size: 1rem;
14-
font-weight: ${({ theme, enabled }) => (enabled ? '500' : '400')};
14+
font-weight: ${({ enabled }) => (enabled ? '500' : '400')};
1515
:hover {
1616
user-select: ${({ enabled }) => (enabled ? 'none' : 'initial')};
1717
background: ${({ theme, enabled }) => (enabled ? theme.primary1 : 'none')};

0 commit comments

Comments
 (0)