Skip to content

Commit

Permalink
yolo deploy (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
voynow authored Sep 2, 2024
1 parent 2fd2af2 commit 0351fa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/app/components/SignUp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function SignUp({ onClose }: SignUpProps): JSX.Element {
event.preventDefault();
localStorage.setItem('email', email);
localStorage.setItem('preferences', preferences);
const redirectUri = 'http://localhost:3000/';
const redirectUri = 'https://trackflow-demo.vercel.app/';
const stravaAuthUrl = `https://www.strava.com/oauth/authorize?client_id=95101&redirect_uri=${encodeURIComponent(redirectUri)}&response_type=code&approval_prompt=auto&scope=read_all,profile:read_all,activity:read_all`;
window.location.href = stravaAuthUrl;
};
Expand Down

0 comments on commit 0351fa4

Please sign in to comment.