summaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/containers/SettingsPage.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/containers/SettingsPage.js b/app/containers/SettingsPage.js
index bfe30ee566..3612b099b5 100644
--- a/app/containers/SettingsPage.js
+++ b/app/containers/SettingsPage.js
@@ -5,7 +5,7 @@ import { bindActionCreators } from 'redux';
import { push } from 'react-router-redux';
import Settings from '../components/Settings';
import { links } from '../config';
-import { open, exit } from '../lib/platform';
+import { openLink, exit } from '../lib/platform';
import type { ReduxState, ReduxDispatch } from '../redux/store';
import type { SharedRouteProps } from '../routes';
@@ -20,7 +20,7 @@ const mapDispatchToProps = (dispatch: ReduxDispatch, _props: SharedRouteProps) =
onViewSupport: () => pushHistory('/settings/support'),
onViewPreferences: () => pushHistory('/settings/preferences'),
onViewAdvancedSettings: () => pushHistory('/settings/advanced'),
- onExternalLink: (type) => open(links[type]),
+ onExternalLink: (type) => openLink(links[type]),
};
};