Skip to content

Commit

Permalink
Add missing curly brace
Browse files Browse the repository at this point in the history
Fixes lint error.
  • Loading branch information
ezwelty committed Nov 14, 2024
1 parent ade9a3f commit f79ae73
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/desktop/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,15 @@ const StyledHeader = styled.header`
color: ${({ theme }) => theme.orange};
}
}
.signin,
.signup {
min-width: auto;
}
}
}
`

const Dropdown = ({ className, children, label, isMatch }) => (
<div className={className}>
<div className={`button${isMatch ? ' active' : ''}`}>
Expand Down

0 comments on commit f79ae73

Please sign in to comment.