summaryrefslogtreecommitdiffhomepage
path: root/app/components/Account.js
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2018-08-07 11:03:11 +0200
committerAndrej Mihajlov <and@mullvad.net>2018-08-07 11:03:11 +0200
commit858ded2aa27ab9c86ecf79c1702ef07a2bdf60fe (patch)
treec279d261fad33222c3fb7e0c45904b2915f21f1b /app/components/Account.js
parent83ae95e38026c16703a50a78966d583280010f3d (diff)
parent7ca1a8e1a3eecd18ee4acea2007b22092da97fd9 (diff)
downloadmullvadvpn-858ded2aa27ab9c86ecf79c1702ef07a2bdf60fe.tar.xz
mullvadvpn-858ded2aa27ab9c86ecf79c1702ef07a2bdf60fe.zip
Merge branch 'update-flow-v0.78'
Diffstat (limited to 'app/components/Account.js')
-rw-r--r--app/components/Account.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/app/components/Account.js b/app/components/Account.js
index 2534a3e40c..2edf277fa4 100644
--- a/app/components/Account.js
+++ b/app/components/Account.js
@@ -23,14 +23,15 @@ export type AccountProps = {
onBuyMore: () => void,
};
-export type AccountState = {
+type State = {
isRefreshingExpiry: boolean,
+ showAccountTokenCopiedMessage: boolean,
};
-export default class Account extends Component<AccountProps, AccountState> {
+export default class Account extends Component<AccountProps, State> {
state = {
isRefreshingExpiry: false,
- showAccountCopiedMessage: false,
+ showAccountTokenCopiedMessage: false,
};
_activationStateToken: ?Types.SubscriptionToken;