Skip to content

Commit 5cc1aba

Browse files
[main] Fix mainnet check for auth0 output (#3149) (#3153)
[static] Signed-off-by: Moritz Kiefer <moritz.kiefer@purelyfunctional.org> Co-authored-by: Moritz Kiefer <moritz.kiefer@purelyfunctional.org>
1 parent ab081ab commit 5cc1aba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cluster/pulumi/common/src/auth0/auth0.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ export function getAuth0ClusterConfig(): Output<Auth0ClusterConfig> {
307307
return infraOutput.apply(output => {
308308
if (
309309
(output['cantonNetwork'] && output['cantonNetwork']['appToClientId'] === undefined) ||
310-
(output['mainNet'] && output['mainNet']['appToClientId'] === undefined)
310+
(output['mainnet'] && output['mainnet']['appToClientId'] === undefined)
311311
) {
312312
// Infra is already on the new version, and its output is correctly typed
313313
return output as Auth0ClusterConfig;

0 commit comments

Comments
 (0)