diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2022-09-27 13:21:41 +0200 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2022-09-29 10:41:28 +0200 |
| commit | fca757b5d4b60ceb580dad6be69ec4d6e76f032b (patch) | |
| tree | c0a14f00bcd877e528e09f4bc92bff61b99c945c /gui/src/renderer/components/AppRouter.tsx | |
| parent | 1933514245681b913e34a6816a2f5533e9bb3071 (diff) | |
| download | mullvadvpn-fca757b5d4b60ceb580dad6be69ec4d6e76f032b.tar.xz mullvadvpn-fca757b5d4b60ceb580dad6be69ec4d6e76f032b.zip | |
Rename interface settings to user interface settings
Diffstat (limited to 'gui/src/renderer/components/AppRouter.tsx')
| -rw-r--r-- | gui/src/renderer/components/AppRouter.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gui/src/renderer/components/AppRouter.tsx b/gui/src/renderer/components/AppRouter.tsx index 0457287744..05f3658605 100644 --- a/gui/src/renderer/components/AppRouter.tsx +++ b/gui/src/renderer/components/AppRouter.tsx @@ -19,7 +19,6 @@ import { } from './ExpiredAccountAddTime'; import Filter from './Filter'; import Focus, { IFocusHandle } from './Focus'; -import InterfaceSettings from './InterfaceSettings'; import Launch from './Launch'; import MainView from './MainView'; import OpenVpnSettings from './OpenVpnSettings'; @@ -28,6 +27,7 @@ import SplitTunnelingSettings from './SplitTunnelingSettings'; import Support from './Support'; import TooManyDevices from './TooManyDevices'; import TransitionContainer, { TransitionView } from './TransitionContainer'; +import UserInterfaceSettings from './UserInterfaceSettings'; import VpnSettings from './VpnSettings'; import WireguardSettings from './WireguardSettings'; @@ -90,7 +90,11 @@ class AppRouter extends React.Component<IHistoryProps & IAppContext, IAppRoutesS <Route exact path={RoutePath.settings} component={Settings} /> <Route exact path={RoutePath.selectLanguage} component={SelectLanguagePage} /> <Route exact path={RoutePath.accountSettings} component={AccountPage} /> - <Route exact path={RoutePath.interfaceSettings} component={InterfaceSettings} /> + <Route + exact + path={RoutePath.userInterfaceSettings} + component={UserInterfaceSettings} + /> <Route exact path={RoutePath.vpnSettings} component={VpnSettings} /> <Route exact path={RoutePath.wireguardSettings} component={WireguardSettings} /> <Route exact path={RoutePath.openVpnSettings} component={OpenVpnSettings} /> |
