diff --git a/src/components/Layout.js b/src/components/Layout.js index 589fd59..8d7c2f3 100644 --- a/src/components/Layout.js +++ b/src/components/Layout.js @@ -41,14 +41,12 @@ class Dashboard extends React.Component { } componentDidMount() { - // if (!this.props.app.isMobile) { this.props.actions.fetchDomain().then((domain) => this.props.actions.updateDomain({ domain, features: this.props.features, }) ); - // } // NOTE: hack to get the timeline to always show. Not entirely sure why // this is necessary. window.dispatchEvent(new Event("resize")); diff --git a/src/components/atoms/Popup.js b/src/components/atoms/Popup.js index af36306..eeea84d 100644 --- a/src/components/atoms/Popup.js +++ b/src/components/atoms/Popup.js @@ -10,14 +10,13 @@ const Popup = ({ onClose, title, theme = "light", - isMobile = false, children, }) => (