From 79efb611da1f04f1135b18fb0c91e389ccebf292 Mon Sep 17 00:00:00 2001 From: Liam Fitzgerald Date: Thu, 16 Jul 2020 10:20:08 +1000 Subject: [PATCH] interface: move base hash to corner of launch Fixes #2699 --- pkg/interface/src/App.js | 2 -- pkg/interface/src/apps/launch/app.js | 3 +++ pkg/interface/src/components/StatusBar.js | 3 --- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/pkg/interface/src/App.js b/pkg/interface/src/App.js index 599fb7eb4..3d2eada6e 100644 --- a/pkg/interface/src/App.js +++ b/pkg/interface/src/App.js @@ -70,7 +70,6 @@ export default class App extends React.Component { const associations = this.state.associations ? this.state.associations : { contacts: {} }; const selectedGroups = this.state.selectedGroups ? this.state.selectedGroups : []; const { state } = this; - const baseHash = this.state.baseHash; return ( @@ -79,7 +78,6 @@ export default class App extends React.Component { diff --git a/pkg/interface/src/apps/launch/app.js b/pkg/interface/src/apps/launch/app.js index 8c22cef35..dca7ed23b 100644 --- a/pkg/interface/src/apps/launch/app.js +++ b/pkg/interface/src/apps/launch/app.js @@ -24,6 +24,7 @@ export default class LaunchApp extends React.Component { const { props } = this; return ( +
+
{props.baseHash}
+
); } } diff --git a/pkg/interface/src/components/StatusBar.js b/pkg/interface/src/components/StatusBar.js index f3fb96977..71a00505b 100644 --- a/pkg/interface/src/components/StatusBar.js +++ b/pkg/interface/src/components/StatusBar.js @@ -66,9 +66,6 @@ const StatusBar = (props) => { }

{locationName}

-
- { props.baseHash } -
); };