From 033812018e9569ac2c72be4c284a11b24f9e3ce3 Mon Sep 17 00:00:00 2001 From: frcarlos <307100636@pcpuma.acatlan.unam.mx> Date: Wed, 11 Feb 2026 15:09:45 -0500 Subject: [PATCH] alerta dulce --- app/(private)/AgregarTiempo/Addtime.tsx | 8 + app/Components/AlertSweet.tsx | 9 + app/Components/AsignacionMesas.tsx | 7 + app/Components/Impressions/impressions.tsx | 6 + app/Components/Receipt/Inscripcion.tsx | 11 +- app/Components/Receipt/Receipt.tsx | 7 + package-lock.json | 869 ++++++++++++++++++++- package.json | 5 +- 8 files changed, 919 insertions(+), 3 deletions(-) create mode 100644 app/Components/AlertSweet.tsx diff --git a/app/(private)/AgregarTiempo/Addtime.tsx b/app/(private)/AgregarTiempo/Addtime.tsx index 9d5a346..b01420c 100644 --- a/app/(private)/AgregarTiempo/Addtime.tsx +++ b/app/(private)/AgregarTiempo/Addtime.tsx @@ -9,6 +9,7 @@ import SelectionCo from "@/app/Components/Selection/SelectionCo"; import axios from "axios"; import { envConfig } from "@/app/lib/config"; import Cookies from "js-cookie"; +import Swal from "sweetalert2"; const PLATAFORMA_MAP: Record = { WINDOWS: 1, @@ -90,6 +91,11 @@ export default function AddTime({ ); toast.success("Tiempo Guardado"); + Swal.fire({ + title: "Tiempo Guardado!", + icon: "success", + draggable: true + }); setFolio(""); setAmount(""); @@ -169,6 +175,7 @@ export default function AddTime({ +