Merge branch 'canary' into fix/envs-array-templates

This commit is contained in:
Mauricio Siu
2025-03-11 00:38:50 -06:00
2 changed files with 3 additions and 3 deletions

View File

@@ -223,7 +223,7 @@ export function processMounts(
): Template["mounts"] {
if (!template?.config?.mounts) return [];
return template.config.mounts.map((mount: MountConfig) => ({
return template?.config?.mounts?.map((mount: MountConfig) => ({
filePath: processValue(mount.filePath, variables, schema),
content: processValue(mount.content, variables, schema),
}));