summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/containers
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2022-09-07 15:52:42 +0200
committerOskar Nyberg <oskar@mullvad.net>2022-09-08 17:29:19 +0200
commit79bd0197520fe657564a16c19c59474231eca394 (patch)
tree9ebf300b51c51e63c62b74961b111664e7caa2b7 /gui/src/renderer/containers
parent65bc519d7271b3bef32dd50cf7b8d41d42f07389 (diff)
downloadmullvadvpn-79bd0197520fe657564a16c19c59474231eca394.tar.xz
mullvadvpn-79bd0197520fe657564a16c19c59474231eca394.zip
Move account number row and expiry row to functional components
Diffstat (limited to 'gui/src/renderer/containers')
-rw-r--r--gui/src/renderer/containers/AccountPage.tsx4
1 files changed, 0 insertions, 4 deletions
diff --git a/gui/src/renderer/containers/AccountPage.tsx b/gui/src/renderer/containers/AccountPage.tsx
index a81676c48b..359d33b5c0 100644
--- a/gui/src/renderer/containers/AccountPage.tsx
+++ b/gui/src/renderer/containers/AccountPage.tsx
@@ -9,10 +9,6 @@ import accountActions from '../redux/account/actions';
import { IReduxState, ReduxDispatch } from '../redux/store';
const mapStateToProps = (state: IReduxState) => ({
- deviceName: state.account.deviceName,
- accountToken: state.account.accountToken,
- accountExpiry: state.account.expiry,
- expiryLocale: state.userInterface.locale,
isOffline: state.connection.isBlocked,
});
const mapDispatchToProps = (dispatch: ReduxDispatch, props: IHistoryProps & IAppContext) => {