Skip to content

Commit 1e36f0e

Browse files
authored
Update property removal logic in schema.ts
1 parent 3538638 commit 1e36f0e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/stack-shared/src/config/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ export function migrateConfigOverride(type: "project" | "branch" | "environment"
338338
// BEGIN 2025-10-29: Removed workflows and everything associated with it
339339
if (isBranchOrHigher) {
340340
res = removeProperty(res, p => p[0] === "workflows");
341-
res = removeProperty(res, p => p[0] === "apps" && p[1] === "workflows");
341+
res = removeProperty(res, p => p[0] === "apps" && p[1] === "installed" && p[2] === "workflows");
342342
}
343343
// END
344344

0 commit comments

Comments
 (0)