fix(stacks): stack.env can be null [BE-12736] (#2239)

This commit is contained in:
Chaim Lev-Ari
2026-04-06 16:55:06 +03:00
committed by GitHub
parent 11f5150190
commit a58ad25533
6 changed files with 6 additions and 6 deletions
@@ -13,7 +13,7 @@ export interface SwarmFileContentPayload {
stackFileContent: string;
/** List of environment variables */
env?: Array<Pair>;
env?: Array<Pair> | null;
/** Whether the stack is from an app template */
fromAppTemplate?: boolean;