diff --git a/libs/config/src/config/agent.config.ts b/libs/config/src/config/agent.config.ts
index d32b23e855b0ec84ba2b0a24ebfdf7d6ac495b48..9922cae83572adbab256a9abd9179076654aa562 100644
--- a/libs/config/src/config/agent.config.ts
+++ b/libs/config/src/config/agent.config.ts
@@ -20,7 +20,7 @@ export const agentConfig = registerAs(
     agentConsumerRateLimit: parseInt(process.env["AGENT_RETE_LIMIT"]!) || 5,
     agentPort: parseInt(process.env["AGENT_PORT"]!),
     agentOobGoals:
-      typeof process.env["AGENT_OOB_GOALS"] !== undefined
+      typeof process.env["AGENT_OOB_GOALS"] !== "undefined"
         ? process.env["AGENT_OOB_GOALS"]!.split(",")
         : [],
     agentIsSVDX: process.env["AGENT_IS_SVDX"] === "true",