diff --git a/frontend/src/component/feature/view-component.jsx b/frontend/src/component/feature/view-component.jsx
index 17d1163a6f..75e078da89 100644
--- a/frontend/src/component/feature/view-component.jsx
+++ b/frontend/src/component/feature/view-component.jsx
@@ -1,6 +1,6 @@
import React, { PropTypes } from 'react';
import { Tabs, Tab, ProgressBar } from 'react-mdl';
-import { hashHistory } from 'react-router';
+import { hashHistory, Link } from 'react-router';
import HistoryComponent from '../history/history-list-toggle-container';
import MetricComponent from './metric-container';
@@ -65,7 +65,9 @@ export default class ViewFeatureToggleComponent extends React.Component {
if (features.length === 0 ) {
return ;
}
- return Could not find the toggle "{featureToggleName}";
+ return (
+ Could not find the toggle {featureToggleName}
+ );
}
const activeTabId = TABS[this.props.activeTab] ? TABS[this.props.activeTab] : TABS.view;