Skip to content

Commit

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

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

0 comments on commit 48a9816

Please sign in to comment.