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} );