From e654db627f941918c787759d701d74603dcf49fb Mon Sep 17 00:00:00 2001 From: Allison Kemmerle Date: Fri, 20 Dec 2024 14:24:00 -0500 Subject: [PATCH] Fix bug in sandbox delete --- lib/prompts/sandboxesPrompt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/prompts/sandboxesPrompt.ts b/lib/prompts/sandboxesPrompt.ts index 5a8b4e983..c7a9421be 100644 --- a/lib/prompts/sandboxesPrompt.ts +++ b/lib/prompts/sandboxesPrompt.ts @@ -26,7 +26,7 @@ function mapSandboxAccountChoices( ): PromptChoices { return ( portals - ?.filter(p => !isSandbox(p)) + ?.filter(p => isSandbox(p)) .map(p => ({ name: uiAccountDescription(getAccountIdentifier(p), false), value: p.name || getAccountIdentifier(p),