Skip to content

Commit

Permalink
Fix bug in sandbox delete
Browse files Browse the repository at this point in the history
  • Loading branch information
kemmerle committed Dec 20, 2024
1 parent 26783ae commit e654db6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/prompts/sandboxesPrompt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit e654db6

Please sign in to comment.