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