Skip to content

Commit

Permalink
Issue #PS-0000 fix: Updated api endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
itsvick committed Nov 27, 2024
1 parent ec21f44 commit fc15aec
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 @@ -4,7 +4,7 @@ export const forgotPasswordAPI = async (
newPassword: any,
token: any
): Promise<any> => {
const apiUrl: string = `${import.meta.env.VITE_PUBLIC_MIDDLEWARE_URL}/forgot-password`;
const apiUrl: string = `${import.meta.env.VITE_PUBLIC_MIDDLEWARE_URL}/user/v1/forgot-password`;
try {
const response = await axios.post(apiUrl, { newPassword, token },
{
Expand Down

0 comments on commit fc15aec

Please sign in to comment.