Skip to content

Commit

Permalink
Éxito
Browse files Browse the repository at this point in the history
  • Loading branch information
facundomelgarejo committed Dec 12, 2024
1 parent 729f5c7 commit 7a4c350
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ const Montos = ({ compromisos, fetchMontos }: CardCargaProps) => {
onClose();
toast({
title: 'Éxito',
description: 'Compromiso creado exitosamente.',
description: 'Compromiso creado éxitosamente.',
status: 'success',
duration: 5000,
isClosable: true,
Expand Down
2 changes: 1 addition & 1 deletion FrontAdmin/src/components/Pages/Login/LoginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function LoginPage() {
setIsLoading(true);
try {
await onLogin(legajo, contrasenia);
showToast('Bienvenido', 'Inicio de sesión exitoso', 'success');
showToast('Bienvenido', 'Inicio de sesión éxitoso', 'success');
} catch (error) {
console.error('Network error', error);
showToast('Error', 'Inicio de sesión fallido', 'error');
Expand Down
2 changes: 1 addition & 1 deletion FrontAdmin/src/components/Pages/Login/LoginPage2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function LoginPage() {
try {
await FetchLogin(username, password);
onLogin();
showToast('Bienvenido', 'Inicio de sesión exitoso', 'success');
showToast('Bienvenido', 'Inicio de sesión éxitoso', 'success');
} catch (error) {
console.error('Network error', error);
showToast('Error', 'Inicio de sesión fallido', 'error');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function TablaMaterias() {
const handleConfirmarBorrado = async () => {
try {
await FetchDeleteMateria(selectedMateria.codigo_materia);
showToast('Exito', 'Materia eliminada con exito', 'success');
showToast('Éxito', 'Materia eliminada con éxito', 'success');
setMaterias((prevMaterias) =>
prevMaterias.filter((m) => m.codigo_materia !== selectedMateria.codigo_materia)
);
Expand All @@ -62,7 +62,7 @@ export default function TablaMaterias() {
console.log({ codigo_materia, anio_plan, nombre });
const Data = FetchPostMateria(parseInt(codigo_materia), parseInt(anio_cursada), parseInt(anio_plan), nombre, parseInt(cuatrimestre));
console.log(Data);
showToast('Exito', 'Materia agregada con exito', 'success');
showToast('Éxito', 'Materia agregada con éxito', 'success');
} catch (error) {
console.error('Network error', error);
showToast('Error', 'No se pudo agregar la materia', 'error');
Expand All @@ -84,7 +84,7 @@ export default function TablaMaterias() {
try {
const Data = FetchPutMateria(parseInt(codigo_materia), parseInt(anio_cursado), parseInt(anio_plan), nombre, parseInt(cuatrimestre));
console.log(Data);
showToast('Exito', 'Materia editada con exito', 'success');
showToast('Éxito', 'Materia editada con éxito', 'success');

const index = materias.findIndex(materia => materia.codigo_materia === parseInt(codigo_materia));
if (index !== -1) {
Expand Down
10 changes: 5 additions & 5 deletions FrontAdmin/src/components/Pages/TareasProgramadas/Tareas.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function Tareas() {
try {
const response = await actualizarpagos();
onClose();
toast('Exito', `${response[0].mensaje}`, 'success');
toast('Éxito', `${response[0].mensaje}`, 'success');
} catch (error) {
toast('Error', 'Proceso no ejecutado', 'error');
}
Expand All @@ -35,7 +35,7 @@ function Tareas() {
try {
const response = await actualizarmaterias();
onClose3();
toast('Exito', `${response[0].mensaje}`, 'success');
toast('Éxito', `${response[0].mensaje}`, 'success');
} catch (error) {
toast('Error', 'Proceso no ejecutado', 'error');
}
Expand All @@ -47,7 +47,7 @@ function Tareas() {
try {
const response = await actualizarinhabilitaciones();
onClose2();
toast('Exito', `${response.mensaje}`, 'success');
toast('Éxito', `${response.mensaje}`, 'success');
console.log('hice el toast');
} catch (error) {
toast('Error', 'Proceso no ejecutado', 'error');
Expand All @@ -60,7 +60,7 @@ function Tareas() {
try {
const response = await actualizarcuotas();
onClose4();
toast('Exito', `${response[0].mensaje}`, 'success');
toast('Éxito', `${response[0].mensaje}`, 'success');
} catch (error) {
toast('Error', 'Proceso no ejecutado', 'error');
}
Expand All @@ -78,7 +78,7 @@ function Tareas() {
await actualizarpagos();
await actualizarcuotas();
onClose5();
toast('Exito', `Todos los procesos fueron ejecutados correctamente`, 'success');
toast('Éxito', `Todos los procesos fueron ejecutados correctamente`, 'success');
} catch (error) {
toast('Error', 'Proceso no ejecutado', 'error');
}
Expand Down
2 changes: 1 addition & 1 deletion FrontAdmin/src/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const routes = [
},
{
path: 'academica',
title: 'Academica',
title: 'Académica',
element: <TablaMaterias />,
icon: iconSysAcad,
rol: 'admin',
Expand Down

0 comments on commit 7a4c350

Please sign in to comment.