Skip to content

Commit

Permalink
Update Header.js (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
bladey authored Jul 6, 2021
1 parent 24b7f2e commit c1bb635
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/src/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ import { jsx } from '@emotion/core';
import { colors, gridSize } from '@arch-ui/theme';

import logosvg from '../assets/logo.svg';
import { Container, SocialIconsNav, Search } from '../components';
import { Container, SocialIconsNav } from '../components';
import { SIDEBAR_WIDTH } from '../components/Sidebar';
import { media, mediaMax, mq } from '../utils/media';

export const HEADER_HEIGHT = 60;

export const Header = forwardRef(({ toggleMenu, showSearch = true, ...props }, ref) => (
export const Header = forwardRef(({ toggleMenu, ...props }, ref) => (
<header
ref={ref}
css={{
Expand Down Expand Up @@ -78,7 +78,7 @@ export const Header = forwardRef(({ toggleMenu, showSearch = true, ...props }, r
},
}}
>
{showSearch && <Search />}
{/* {showSearch && <Search />} */}
</div>
<div
css={{
Expand Down

0 comments on commit c1bb635

Please sign in to comment.