Skip to content

Commit

Permalink
fix: remove react user route slash
Browse files Browse the repository at this point in the history
  • Loading branch information
fgarciafCap committed Oct 8, 2024
1 parent cfc5b49 commit f4d1f93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/develop/filtered/react.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const ludotecaAPI = createApi({
>({
query: ({ pageNumber, pageSize }) => {
return {
url: "author/",
url: "author",
method: "POST",
body: {
pageable: {
Expand Down
2 changes: 1 addition & 1 deletion docs/develop/paginated/react.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Vamos a añadir los métodos necesarios para el crud de autores en el fichero `s
>({
query: ({ pageNumber, pageSize }) => {
return {
url: "author/",
url: "author",
method: "POST",
body: {
pageable: {
Expand Down

0 comments on commit f4d1f93

Please sign in to comment.