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 0e75ebf commit f967b4aCopy full SHA for f967b4a
lex-web-ui/src/store/actions.js
@@ -1137,7 +1137,7 @@ export default {
1137
return awsCredentials;
1138
}
1139
region = context.state.config.cognito.region || context.state.config.region || 'us-east-1';
1140
- poolId = context.state.config.cognito.poolId;
+ const poolId = context.state.config.cognito.poolId || localStorage.getItem('poolId');
1141
const appUserPoolName = context.state.config.cognito.appUserPoolName || localStorage.getItem('appUserPoolName');
1142
poolName = `cognito-idp.${region}.amazonaws.com/${appUserPoolName}`;
1143
const appUserPoolClientId = context.state.config.cognito.appUserPoolClientId || localStorage.getItem('appUserPoolClientId')
0 commit comments