remove link to feedback, since we're not using the google doc at all

This commit is contained in:
Cassie Tarakajian 2019-10-31 15:06:29 -04:00
parent d5dfe3937f
commit 821b2ea111
3 changed files with 2 additions and 25 deletions

View File

@ -486,7 +486,7 @@ class Nav extends React.PureComponent {
}
}}
>
<span className="nav__item-header">Help & Feedback</span>
<span className="nav__item-header">Help</span>
<InlineSVG className="nav__item-header-triangle" src={triangleUrl} />
</button>
<ul className="nav__dropdown">
@ -520,16 +520,6 @@ class Nav extends React.PureComponent {
About
</Link>
</li>
<li className="nav__dropdown-item">
<Link
to="/feedback"
onFocus={this.handleFocusForHelp}
onBlur={this.handleBlur}
onClick={this.setDropdownForNone}
>
Feedback
</Link>
</li>
</ul>
</li>
</ul>

View File

@ -281,7 +281,7 @@ exports[`Nav renders correctly 1`] = `
<span
className="nav__item-header"
>
Help & Feedback
Help
</span>
<span
className="isvg loading nav__item-header-triangle"
@ -327,18 +327,6 @@ exports[`Nav renders correctly 1`] = `
About
</a>
</li>
<li
className="nav__dropdown-item"
>
<a
onBlur={[Function]}
onClick={[Function]}
onFocus={[Function]}
style={Object {}}
>
Feedback
</a>
</li>
</ul>
</li>
</ul>

View File

@ -41,7 +41,6 @@ const routes = store => (
<Route path="/:username/sketches/:project_id" component={IDEView} />
<Route path="/:username/sketches" component={IDEView} />
<Route path="/about" component={IDEView} />
<Route path="/feedback" component={IDEView} />
</Route>
);