We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 001977d commit 37b2da3Copy full SHA for 37b2da3
email_mailbox/src/components/ManualSyncProcessPopup.js
@@ -50,13 +50,12 @@ const SYNC_DENIED_STATUS = 493;
50
const SYNC_APPROVED_STATUS = 200;
51
const DATA_READY_STATUS = 200;
52
53
-const defaultOldDeviceName = myAccount.recipientId.includes('@')
54
- ? myAccount.recipientId
55
- : `${myAccount.recipientId}@${appDomain}`;
56
-
57
class ManualSyncProcessPopup extends Component {
58
constructor(props) {
59
super(props);
+ const defaultOldDeviceName = myAccount.recipientId.includes('@')
+ ? myAccount.recipientId
+ : `${myAccount.recipientId}@${appDomain}`;
60
this.state = {
61
mode: manualSyncModes.WAITING,
62
message: messages.waitingForMailbox,
0 commit comments