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;