Skip to content

Commit

Permalink
fix(decline): update end point url, fix typo (#834)
Browse files Browse the repository at this point in the history
  • Loading branch information
manojava-gk authored May 27, 2024
1 parent 5d37e3c commit adea92b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/deleteCompany/deleteCompanyApiSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const apiSlice = createApi({
}),
declineRegistration: builder.mutation<void, string>({
query: (applicationId) => ({
url: `/api/registration/application/${applicationId}/declineregistration`,
url: `/api/registration/applications/${applicationId}/declineregistration`,
method: 'POST',
}),
}),
Expand Down

0 comments on commit adea92b

Please sign in to comment.