Skip to content

Commit

Permalink
remove trailing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad authored Nov 15, 2023
1 parent 45cb72d commit 3e31576
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Redux/api.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ const routes = {
},

deleteUser: {
path: "/api/v1/users/{username}",
path: "/api/v1/users/{username}/",
method: "DELETE",
TRes: Type<Record<string, never>>(),
},
Expand Down Expand Up @@ -395,7 +395,7 @@ const routes = {

// Download Api
deleteFacility: {
path: "/api/v1/facility/{id}",
path: "/api/v1/facility/{id}/",
method: "DELETE",
TRes: Type<Record<string, never>>(),
},
Expand Down

0 comments on commit 3e31576

Please sign in to comment.