We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82a36bb commit ace7590Copy full SHA for ace7590
1 file changed
backend/src/iac/backend-stack.ts
@@ -98,11 +98,7 @@ export class BackendStack extends cdk.Stack {
98
});
99
100
// Cognito User Pool
101
- const userPool = cognito.UserPool.fromUserPoolId(
102
- this,
103
- `${appName}UserPool`,
104
- userPoolId,
105
- );
+ const userPool = cognito.UserPool.fromUserPoolId(this, `${appName}UserPool`, userPoolId);
106
107
// Cognito domain
108
const userPoolDomain = cognito.UserPoolDomain.fromDomainName(
0 commit comments