feat(assistant): add approval inbox and e2e hardening
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user