mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-26 02:11:12 -05:00
Fix: Resolve type incompatibility in company person_type
This commit is contained in:
@@ -375,9 +375,9 @@ export default function ManufacturerDetail() {
|
||||
name: manufacturer.name,
|
||||
slug: manufacturer.slug,
|
||||
description: manufacturer.description,
|
||||
company_type: 'manufacturer',
|
||||
person_type: manufacturer.person_type,
|
||||
website_url: manufacturer.website_url,
|
||||
company_type: 'manufacturer',
|
||||
person_type: (manufacturer.person_type || 'company') as 'company' | 'individual' | 'firm' | 'organization',
|
||||
website_url: manufacturer.website_url,
|
||||
founded_year: manufacturer.founded_year,
|
||||
headquarters_location: manufacturer.headquarters_location,
|
||||
banner_image_url: manufacturer.banner_image_url,
|
||||
|
||||
Reference in New Issue
Block a user