diff --git a/src/dashboard/Apps/AppsIndex.react.js b/src/dashboard/Apps/AppsIndex.react.js index bf7dd9ab23..164151d96a 100644 --- a/src/dashboard/Apps/AppsIndex.react.js +++ b/src/dashboard/Apps/AppsIndex.react.js @@ -96,6 +96,11 @@ export default class AppsIndex extends React.Component { } componentWillMount() { + if (AppsManager.apps().length === 1) { + const [app] = AppsManager.apps(); + history.push(`/apps/${app.slug}/browser`); + return; + } document.body.addEventListener('keydown', this.focusField); AppsManager.getAllAppsIndexStats().then(() => { this.forceUpdate();