Skip to content

Commit

Permalink
fix: Se trae todos los alumnos, sin limite de registros
Browse files Browse the repository at this point in the history
  • Loading branch information
facundomelgarejo committed Sep 21, 2024
1 parent 50ec31c commit e7c007e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FrontAdmin/src/API/DatosAlumnosV2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const FetchAlumnos = async () => {
try {
const token = Cookies.get('tokennn');

const response = await fetch('http://localhost:8000/api/alumnos/', {
const response = await fetch('http://localhost:8000/api/alumnos/?limit=9999', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
Expand Down

0 comments on commit e7c007e

Please sign in to comment.