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),