We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e000c5b commit b50a902Copy full SHA for b50a902
apps/sim/lib/webhooks/providers/zoom.ts
@@ -72,7 +72,11 @@ async function resolveZoomChallengeSecrets(
72
: {}
73
74
try {
75
- const config = await resolveEnvVarsInObject(rawConfig, row.userId, row.workspaceId)
+ const config = await resolveEnvVarsInObject(
76
+ rawConfig,
77
+ row.userId,
78
+ row.workspaceId ?? undefined
79
+ )
80
const secretToken = typeof config.secretToken === 'string' ? config.secretToken : ''
81
return { secretToken }
82
} catch (error) {
0 commit comments