Skip to content

Commit

Permalink
Issue #PS-0000 fix: Updated password reset url
Browse files Browse the repository at this point in the history
  • Loading branch information
itsvick committed Nov 24, 2024
1 parent b312f49 commit 4898032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/ResetPasswordService.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const forgotPasswordAPI = async (
};

export const resetPasswordLink = async (username: any): Promise<any> => {
const apiUrl: string = `${import.meta.env.VITE_PUBLIC_MIDDLEWARE_URL}/password-reset-link`;
const apiUrl: string = `${import.meta.env.VITE_PUBLIC_MIDDLEWARE_URL}/user/v1/password-reset-link`;
try {
const urlParams = new URLSearchParams(window.location.search);
const redirectUrl = urlParams.get("redirectUrl");
Expand Down

0 comments on commit 4898032

Please sign in to comment.