diff --git a/src/components/Sidebar/AppsMenu.react.js b/src/components/Sidebar/AppsMenu.react.js
index 359c7d1a20..7568c39a79 100644
--- a/src/components/Sidebar/AppsMenu.react.js
+++ b/src/components/Sidebar/AppsMenu.react.js
@@ -23,7 +23,7 @@ let AppsMenu = ({ apps, current, height, onSelect }) => (
return null;
}
return (
-
+
{app.name}
diff --git a/src/components/Sidebar/AppsSelector.react.js b/src/components/Sidebar/AppsSelector.react.js
index 45f82c148d..ef5e978bb9 100644
--- a/src/components/Sidebar/AppsSelector.react.js
+++ b/src/components/Sidebar/AppsSelector.react.js
@@ -59,7 +59,7 @@ export default class AppsSelector extends React.Component {
if (sections[0] === '') {
sections.shift();
}
- history.push(null, `/apps/${value}/${sections[2]}`);
+ history.push(`/apps/${value}/${sections[2]}`);
}
});
}
@@ -100,4 +100,3 @@ export default class AppsSelector extends React.Component {
AppsSelector.contextTypes = {
currentApp: React.PropTypes.instanceOf(ParseApp)
};
-
diff --git a/src/dashboard/Push/PushNew.react.js b/src/dashboard/Push/PushNew.react.js
index 57d844d09a..5b531b843e 100644
--- a/src/dashboard/Push/PushNew.react.js
+++ b/src/dashboard/Push/PushNew.react.js
@@ -663,7 +663,7 @@ export default class PushNew extends DashboardView {
diff --git a/src/dashboard/Settings/GeneralSettings.react.js b/src/dashboard/Settings/GeneralSettings.react.js
index 5daa1b6b3b..45df160d8f 100644
--- a/src/dashboard/Settings/GeneralSettings.react.js
+++ b/src/dashboard/Settings/GeneralSettings.react.js
@@ -228,7 +228,7 @@ let ManageAppFields = ({
description='View your migration progress.' />}
input={ history.push('/apps/' + appSlug + '/migration')}
+ onClick={() => history.push(`/apps/${appSlug}/migration`)}
value='View progress' />} />
} else {
migrateAppField = [ history.push('/apps/' + this.context.currentApp.slug + '/migration')}
+ onSuccess={() => history.push(`/apps/${this.context.currentApp.slug}/migration`)}
clearFields={() => this.setState({
migrationMongoURL: '',
migrationWarnings: [],