Skip to content

Commit

Permalink
Refactor EstadoCuentaAlumno.ts and LinksSubMenu.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
yoelmarain committed Oct 4, 2024
1 parent 8e1785e commit ac51489
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion FrontAdmin/src/API/EstadoCuentaAlumno.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const FetchEstadoCuenta = async (dni: number) => {

if (response.ok) {
const data = await response.json();
return data;
return data.results;
} else {
throw new Error('Error en la respuesta del servidor');
}
Expand Down
6 changes: 3 additions & 3 deletions FrontAdmin/src/components/SubMenu/LinksSubMenu.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export const ITEMS_SUBMENU = [
{ url: '#', title: 'Alumnos inhabilitados' },
{ url: '#', title: 'Alumnos con baja provisoria' },
{ url: '#', title: 'Inhabilitaciones' },
{ url: '#', title: 'Baja Provisoria' },
{ url: 'cuotas', title: 'Cuotas' , tooltip: 'Alumnos que abonaron/no abonaron una respectiva cuota' },
{ url: '#', title: 'Alumnos que no abonaron matricula' },
{ url: '#', title: 'Matricula' },
{ url: 'alumnos-que-firmaron-compromiso-de-pago', title: 'Compromiso de Pago'},
{ url: '#', title: 'Pagos' },
{
Expand Down

0 comments on commit ac51489

Please sign in to comment.