From e30cc7d7c66262ef3d6bf7f55b1a5517b34c28de Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Wed, 13 Aug 2025 16:58:36 +0200 Subject: [PATCH] Remove unused Test and Test4 components --- apps/infoalloggi/src/pages/test.tsx | 21 --------------------- apps/infoalloggi/src/pages/test4.tsx | 6 ------ 2 files changed, 27 deletions(-) delete mode 100644 apps/infoalloggi/src/pages/test.tsx delete mode 100644 apps/infoalloggi/src/pages/test4.tsx diff --git a/apps/infoalloggi/src/pages/test.tsx b/apps/infoalloggi/src/pages/test.tsx deleted file mode 100644 index 013a4f6..0000000 --- a/apps/infoalloggi/src/pages/test.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import type { NextPage } from "next"; -import { ReceiptGenerator } from "~/components/acquisto_receipt"; -import { LoadingPage } from "~/components/loading"; -import type { OrdiniOrdineId } from "~/schemas/public/Ordini"; -import { api } from "~/utils/api"; - -const Test: NextPage = () => { - const { data } = api.servizio.getOrdineRicevutaData.useQuery({ - ordineId: "9e6badb3-41e7-459f-8e00-ae57bfb86ea0" as OrdiniOrdineId, // Replace with a valid ordine ID for testing - }); - if (!data) { - return ; - } - return ( -
- -
- ); -}; - -export default Test; diff --git a/apps/infoalloggi/src/pages/test4.tsx b/apps/infoalloggi/src/pages/test4.tsx deleted file mode 100644 index 5c07fca..0000000 --- a/apps/infoalloggi/src/pages/test4.tsx +++ /dev/null @@ -1,6 +0,0 @@ -import type { NextPage } from "next"; - -const Test4: NextPage = () => { - return
; -}; -export default Test4;