Skip to content

Commit

Permalink
undefined fix
Browse files Browse the repository at this point in the history
  • Loading branch information
laszlocph committed Nov 30, 2024
1 parent 491daa5 commit 8ad151e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/src/components/env/env.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ function renderServices(
if (!config) {
config = envConfigs.find((config) => config.app === stack.service.name)
}
configsWeDeployed.push(config.app);
if (config) {
configsWeDeployed.push(config.app);
}

let deployment = "";
if (stack.deployment) {
Expand Down

0 comments on commit 8ad151e

Please sign in to comment.