Skip to content

Commit 377966a

Browse files
authored
Revert "adding in get started to Guides page for #743"
1 parent 60f6c4d commit 377966a

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

components/sidebar/sidebar.jsx

-10
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,6 @@ import SidebarItem from '../sidebar-item/sidebar-item';
33

44
export default props => {
55
let { sectionName, pages, currentPage } = props;
6-
let getStarted = null;
7-
if (sectionName === 'guides') {
8-
getStarted = (
9-
<SidebarItem
10-
url={ `/get-started` }
11-
title="Get Started"
12-
/>
13-
);
14-
}
156

167
return (
178
<nav className="sidebar">
@@ -22,7 +13,6 @@ export default props => {
2213
title="Introduction"
2314
currentPage= { currentPage }
2415
/>
25-
{ getStarted }
2616
{
2717
pages.map(({ url, title, anchors }, i) =>
2818
<SidebarItem

0 commit comments

Comments
 (0)