Skip to content

Commit

Permalink
Fix login issue by NOT using cognito auth endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
vitvakatu committed Dec 20, 2024
1 parent bfc9c8a commit 01211b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/gui/src/dashboard/authentication/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ export interface NestedAmplifyConfig {
export function toNestedAmplifyConfig(config: AmplifyConfig): NestedAmplifyConfig {
return {
region: config.region,
endpoint: config.endpoint,
// endpoint: config.endpoint,
// TODO: Use the endpoint when it is working.
endpoint: undefined,
userPoolId: config.userPoolId,
userPoolWebClientId: config.userPoolWebClientId,
oauth: {
Expand Down

0 comments on commit 01211b1

Please sign in to comment.