diff --git a/ts/components/MainHeader.tsx b/ts/components/MainHeader.tsx index f44d6979f..d2dda7a0f 100644 --- a/ts/components/MainHeader.tsx +++ b/ts/components/MainHeader.tsx @@ -333,13 +333,6 @@ export class MainHeader extends React.Component { name: i18n('copyPublicKey'), onClick: onCopyPublicKey, }, - { - id: 'editProfile', - name: i18n('editProfile'), - onClick: () => { - trigger('onEditProfile'); - }, - }, { id: 'showSeed', name: i18n('showSeed'), @@ -396,6 +389,14 @@ export class MainHeader extends React.Component { } if (!isSecondaryDevice) { + // insert as second element + menuItems.splice(1, 0, { + id: 'editProfile', + name: i18n('editProfile'), + onClick: () => { + trigger('onEditProfile'); + }, + }); menuItems.push({ id: 'pairNewDevice', name: 'Device Pairing',