From 4d4df1b544754d37de5f331c527336a14b26e7ef Mon Sep 17 00:00:00 2001 From: "sosuke.iwabuchi" Date: Mon, 31 Jul 2023 10:51:56 +0900 Subject: [PATCH] =?UTF-8?q?HT=20API=E6=96=B0=E3=83=AC=E3=82=A4=E3=82=A2?= =?UTF-8?q?=E3=82=A6=E3=83=88=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/custom/hello-techno/index.ts | 1 - .../custom/hello-techno/hooks/useParkingList.tsx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/api/custom/hello-techno/index.ts b/src/api/custom/hello-techno/index.ts index 4d57206..149ed04 100644 --- a/src/api/custom/hello-techno/index.ts +++ b/src/api/custom/hello-techno/index.ts @@ -10,7 +10,6 @@ export type HTParking = { customer_name: string; parking_management_code: string; parking_name: string; - name: string; // 旧API仕様 }; export type HTAdjustData = { customer_code: string; diff --git a/src/pages/dashboard/receipt-issuing-order/custom/hello-techno/hooks/useParkingList.tsx b/src/pages/dashboard/receipt-issuing-order/custom/hello-techno/hooks/useParkingList.tsx index 4850b13..43dc302 100644 --- a/src/pages/dashboard/receipt-issuing-order/custom/hello-techno/hooks/useParkingList.tsx +++ b/src/pages/dashboard/receipt-issuing-order/custom/hello-techno/hooks/useParkingList.tsx @@ -220,7 +220,7 @@ function Row({ data, onNext }: RowProps) { return ( {data.customer_name} - {data.parking_name ?? data.name} + {data.parking_name} {data.parking_management_code} );