summaryrefslogtreecommitdiffhomepage
path: root/app/components
diff options
context:
space:
mode:
Diffstat (limited to 'app/components')
-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;