Skip to content

Commit

Permalink
Move default account the end of account list command output
Browse files Browse the repository at this point in the history
  • Loading branch information
liamduckett committed Aug 4, 2024
1 parent 1aa1f51 commit 7df7b72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/cli/commands/accounts/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ exports.handler = async options => {
);

logger.log(i18n(`${i18nKey}.configPath`, { configPath }));
logger.log(
i18n(`${i18nKey}.defaultAccount`, { account: config.defaultPortal })
);
logger.log(i18n(`${i18nKey}.accounts`));
logger.log(getTableContents(portalData, { border: { bodyLeft: ' ' } }));
logger.log(
i18n(`${i18nKey}.defaultAccount`, { account: config.defaultPortal })
);
};

exports.builder = yargs => {
Expand Down

0 comments on commit 7df7b72

Please sign in to comment.