feat(assistant): add approval inbox and e2e hardening

This commit is contained in:
2026-03-29 10:10:59 +02:00
parent 4f48afe7b4
commit beae1a5d6e
12 changed files with 2482 additions and 331 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ function writeManagedWebEnv(rootEnv) {
const contents = managedEnvKeys
.map((key) => {
const value = rootEnv[key] ?? process.env[key];
const value = process.env[key] ?? rootEnv[key];
return value ? `${key}=${value}` : null;
})
.filter(Boolean)