Skip to content

Commit

Permalink
fix: dont index the mobile header
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Jul 31, 2020
1 parent 48a9816 commit 582b424
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/MobileHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ const MobileHeader = ({ className, isOpen, toggle }) => {
const [searchTerm, setSearchTerm] = useState('');

return (
<header className={cx(styles.container, className)}>
<header
data-swiftype-index={false}
className={cx(styles.container, className)}
>
<div className={styles.menuBar}>
<Link to="/">
<Logo className={styles.logo} />
Expand Down

0 comments on commit 582b424

Please sign in to comment.