We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c087fbf commit 5352828Copy full SHA for 5352828
backend/src/iac/backend-stack.ts
@@ -69,11 +69,9 @@ export class BackendStack extends cdk.Stack {
69
});
70
71
// Look up existing Cognito User Pool
72
- const userPoolId = process.env.AWS_COGNITO_CLIENT_ID || cognito.UserPool.fromUserPoolId(
73
- this,
74
- `${appName}UserPool`,
75
- 'us-east-1_PszlvSmWc',
76
- ).userPoolId;
+ const userPoolId =
+ process.env.AWS_COGNITO_CLIENT_ID ||
+ cognito.UserPool.fromUserPoolId(this, `${appName}UserPool`, 'us-east-1_PszlvSmWc').userPoolId;
77
78
// Create a Cognito domain if it doesn't exist
79
const userPoolDomain = cognito.UserPoolDomain.fromDomainName(
0 commit comments