Skip to content

Commit

Permalink
Fix callback URI
Browse files Browse the repository at this point in the history
  • Loading branch information
abelr20 committed Aug 2, 2024
1 parent 7daf324 commit a7ffc82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/features/auth/components/LoginButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react';
const LoginButton: React.FC = () => {
const navigate = () => {
window.location.href =
'https://skyscraperwerock.auth.us-east-2.amazoncognito.com/oauth2/authorize?client_id=6hjtfh1ddmn4afj4c29ddijj32&response_type=token&scope=email+openid+phone+profile&redirect_uri=http%3A%2F%2Flocalhost%3A8080%2Fdashboard';
'https://skyscraperwerock.auth.us-east-2.amazoncognito.com/oauth2/authorize?client_id=6hjtfh1ddmn4afj4c29ddijj32&response_type=token&scope=email+openid+phone+profile&redirect_uri=https%3A%2F%2Fskyscraper-api.com%2Fdashboard';
};

return (
Expand Down

0 comments on commit a7ffc82

Please sign in to comment.