Skip to content

Commit b50a902

Browse files
committed
fix build
1 parent e000c5b commit b50a902

File tree

1 file changed

+5
-1
lines changed
  • apps/sim/lib/webhooks/providers

1 file changed

+5
-1
lines changed

apps/sim/lib/webhooks/providers/zoom.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,11 @@ async function resolveZoomChallengeSecrets(
7272
: {}
7373

7474
try {
75-
const config = await resolveEnvVarsInObject(rawConfig, row.userId, row.workspaceId)
75+
const config = await resolveEnvVarsInObject(
76+
rawConfig,
77+
row.userId,
78+
row.workspaceId ?? undefined
79+
)
7680
const secretToken = typeof config.secretToken === 'string' ? config.secretToken : ''
7781
return { secretToken }
7882
} catch (error) {

0 commit comments

Comments
 (0)