Skip to content

Commit

Permalink
fix: quite por el momento el año de ingreso de los listados de alumno…
Browse files Browse the repository at this point in the history
…s que firmaron y no firmaron el comrpomiso
  • Loading branch information
MirandaAriano committed Oct 9, 2024
1 parent 0a9d7ba commit cf41e49
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ interface Alumnos {
legajo: number;
dni: number;
estado_financiero: string;
anio_ingreso: number;
}

const AlumnosConCompromiso: React.FC = () => {
Expand Down Expand Up @@ -70,7 +69,6 @@ const AlumnosConCompromiso: React.FC = () => {
<Th fontFamily="Helvetica" fontWeight="900">LEGAJO</Th>
<Th fontFamily="Helvetica" fontWeight="900">DNI</Th>
<Th fontFamily="Helvetica" fontWeight="900">SITUACION FINANCIERA</Th>
<Th fontFamily="Helvetica" fontWeight="900">AÑO INGRESO</Th>
</Tr>
</Thead>
<Tbody>
Expand All @@ -80,7 +78,6 @@ const AlumnosConCompromiso: React.FC = () => {
<Td>{alumno.legajo}</Td>
<Td>{alumno.dni}</Td>
<Td>{alumno.estado_financiero}</Td>
<Td>{alumno.anio_ingreso}</Td>
</Tr>
))}
</Tbody>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ interface Alumnos {
legajo: number;
dni: number;
estado_financiero: string;
anio_ingreso: number;
}

const AlumnosConCompromiso: React.FC = () => {
Expand Down Expand Up @@ -70,7 +69,6 @@ const AlumnosConCompromiso: React.FC = () => {
<Th fontFamily="Helvetica" fontWeight="900">LEGAJO</Th>
<Th fontFamily="Helvetica" fontWeight="900">DNI</Th>
<Th fontFamily="Helvetica" fontWeight="900">SITUACION FINANCIERA</Th>
<Th fontFamily="Helvetica" fontWeight="900">AÑO INGRESO</Th>
</Tr>
</Thead>
<Tbody>
Expand All @@ -80,7 +78,6 @@ const AlumnosConCompromiso: React.FC = () => {
<Td>{alumno.legajo}</Td>
<Td>{alumno.dni}</Td>
<Td>{alumno.estado_financiero}</Td>
<Td>{alumno.anio_ingreso}</Td>
</Tr>
))}
</Tbody>
Expand Down

0 comments on commit cf41e49

Please sign in to comment.