diff --git a/frontend/src/api/screeningGuideApi.ts b/frontend/src/api/screeningGuideApi.ts index 0609fa0..4be75d1 100644 --- a/frontend/src/api/screeningGuideApi.ts +++ b/frontend/src/api/screeningGuideApi.ts @@ -72,6 +72,8 @@ export interface ShipInfoResponse { imoNo: string; shipName: string; shipStatus: string; + nationalityCode: string; + nationalityIsoCode: string | null; nationality: string; shipType: string; dwt: string; @@ -87,11 +89,19 @@ export interface CompanyInfoResponse { companyCode: string; fullName: string; abbreviation: string; - country: string; - city: string; status: string; + parentCompanyCode: string | null; + parentCompanyName: string | null; registrationCountry: string; - address: string; + registrationCountryCode: string; + registrationCountryIsoCode: string | null; + controlCountry: string | null; + controlCountryCode: string | null; + controlCountryIsoCode: string | null; + foundedDate: string | null; + email: string | null; + phone: string | null; + website: string | null; } // 지표 현재 상태 diff --git a/frontend/src/components/screening/HistoryTab.tsx b/frontend/src/components/screening/HistoryTab.tsx index 68e2034..0507406 100644 --- a/frontend/src/components/screening/HistoryTab.tsx +++ b/frontend/src/components/screening/HistoryTab.tsx @@ -73,13 +73,11 @@ function StatusBadge({ value }: { value: string | null }) { ); } -function InfoField({ label, value }: { label: string; value: string | null | undefined }) { - return ( -