Skip to content

Commit

Permalink
style(header): react syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tarantilis committed Feb 6, 2023
1 parent d10d21b commit 3add127
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/Header/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ const Main = ({
<button
className="search-action"
onClick={searchOnClick}
tabindex="0"
tabIndex="0"
aria-pressed="false"
aria-haspopup="true"
ref={searchButtonRef}
Expand Down Expand Up @@ -333,7 +333,7 @@ const BurgerAction = React.forwardRef((props, ref) => (
<button
ref={ref}
className={`burger-action ${props.className}`}
tabindex="0"
tabIndex="0"
aria-pressed="false"
aria-haspopup="true"
onClick={props.onClick}
Expand Down

0 comments on commit 3add127

Please sign in to comment.