Skip to content

Commit 145a564

Browse files
committed
improve: replace environment variable with document location origin
1 parent 640d632 commit 145a564

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/web/src/components/AuthForm.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ function AuthForm({ view }: Props) {
7272
}}
7373
redirectTo={
7474
view === 'forgotten_password'
75-
? `${process.env.NEXT_PUBLIC_BASE_URL}/auth/update-password`
76-
: `${process.env.NEXT_PUBLIC_BASE_URL}/dashboard`
75+
? `${document.location.origin}/auth/update-password`
76+
: `${document.location.origin}/dashboard`
7777
}
7878
/>
7979
</div>

0 commit comments

Comments
 (0)