From 1a730561834d3c71713476d13ee4674e67c3dfcb Mon Sep 17 00:00:00 2001 From: gonzaloriestra <14979109+gonzaloriestra@users.noreply.github.com> Date: Sun, 10 May 2026 01:00:21 +0000 Subject: [PATCH] [Refactor] Fix incorrect Promise.all usage in app.ts --- .changeset/metal-wolves-float.md | 2 ++ packages/app/src/cli/models/app/app.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .changeset/metal-wolves-float.md diff --git a/.changeset/metal-wolves-float.md b/.changeset/metal-wolves-float.md new file mode 100644 index 00000000000..a845151cc84 --- /dev/null +++ b/.changeset/metal-wolves-float.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/packages/app/src/cli/models/app/app.ts b/packages/app/src/cli/models/app/app.ts index df707939e2b..3bf2b55b38b 100644 --- a/packages/app/src/cli/models/app/app.ts +++ b/packages/app/src/cli/models/app/app.ts @@ -405,7 +405,7 @@ export class App< } } - await Promise.all([this.allExtensions.map((ext) => ext.preDeployValidation())]) + await Promise.all(this.allExtensions.map((ext) => ext.preDeployValidation())) } extensionsForType(specification: {identifier: string; externalIdentifier: string}): ExtensionInstance[] {