Skip to content

Commit

Permalink
feat: disable passport protection for staking app (passportxyz#2553)
Browse files Browse the repository at this point in the history
  • Loading branch information
nutrina authored Jun 6, 2024
1 parent b92cb39 commit d0b1d50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions infra/aws/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -556,9 +556,9 @@ const amplifyAppInfo = coreInfraStack.getOutput("newPassportDomain").apply((doma
stakingBranches[stack],
stakingEnvVars[stack],
{ ...defaultTags, Name: "staking-app" },
(process.env["STAKING_APP_ENABLE_AUTH"] || "false").toLowerCase() == "true",
process.env["STAKING_APP_BASIC_AUTH_USERNAME"],
process.env["STAKING_APP_BASIC_AUTH_PASSWORD"]
false,
"",
""
);
return stakingAppInfo;
});
Expand Down

0 comments on commit d0b1d50

Please sign in to comment.