Skip to content

Commit

Permalink
fix(decline): update end point url, fix typo (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
manojava-gk authored May 27, 2024
1 parent f7c7161 commit b36c28a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
- Blank Page fix on autosetup call
- App Subscription Detail
- fix opening the correct technical user by ID
- Decline company
- Api url typo fix

## 2.0.0-RC8

Expand Down
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/application/${applicationId}/declineregistration`,
method: 'POST',
}),
}),
Expand Down

0 comments on commit b36c28a

Please sign in to comment.