From 1ed639f78665385402c0ad56b3fc0c030a3dffd8 Mon Sep 17 00:00:00 2001 From: D E Costa Date: Thu, 19 Oct 2023 19:14:20 -0400 Subject: [PATCH] Change account flag to account id --- src/setup.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/setup.ts b/src/setup.ts index 75d430c..d357898 100644 --- a/src/setup.ts +++ b/src/setup.ts @@ -27,9 +27,9 @@ export class Setup { ); } - private setAccountUrlFlag() { + private setAccountIdFlag() { setGlobalFlags({ - account: this.accountUrl, + account: this.accountUuid, }); } @@ -70,7 +70,7 @@ export class Setup { promptForVault = false; } } else { - this.setAccountUrlFlag(); + this.setAccountIdFlag(); } if (!this.accountUuid || !this.accountUrl) { @@ -179,7 +179,7 @@ export class Setup { account.account_uuid, ); await this.core.context.secrets.store(STATE.ACCOUNT_URL, account.url); - this.setAccountUrlFlag(); + this.setAccountIdFlag(); if (isChanged) { await this.chooseVault();