Skip to content

Commit 37b2da3

Browse files
author
Pedro Aim
committed
fixing email shown in mailbox sync
1 parent 001977d commit 37b2da3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

email_mailbox/src/components/ManualSyncProcessPopup.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,12 @@ const SYNC_DENIED_STATUS = 493;
5050
const SYNC_APPROVED_STATUS = 200;
5151
const DATA_READY_STATUS = 200;
5252

53-
const defaultOldDeviceName = myAccount.recipientId.includes('@')
54-
? myAccount.recipientId
55-
: `${myAccount.recipientId}@${appDomain}`;
56-
5753
class ManualSyncProcessPopup extends Component {
5854
constructor(props) {
5955
super(props);
56+
const defaultOldDeviceName = myAccount.recipientId.includes('@')
57+
? myAccount.recipientId
58+
: `${myAccount.recipientId}@${appDomain}`;
6059
this.state = {
6160
mode: manualSyncModes.WAITING,
6261
message: messages.waitingForMailbox,

0 commit comments

Comments
 (0)