mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 17:11:23 -05:00
Fix: Implement location data storage fix
This commit is contained in:
@@ -61,7 +61,21 @@ export interface ParkFormData {
|
||||
email?: string;
|
||||
operator_id?: string;
|
||||
property_owner_id?: string;
|
||||
|
||||
// Location can be stored as object for new submissions or ID for editing
|
||||
location?: {
|
||||
name: string;
|
||||
city?: string;
|
||||
state_province?: string;
|
||||
country: string;
|
||||
postal_code?: string;
|
||||
latitude: number;
|
||||
longitude: number;
|
||||
timezone?: string;
|
||||
display_name: string;
|
||||
};
|
||||
location_id?: string;
|
||||
|
||||
images?: ImageAssignments;
|
||||
banner_image_url?: string;
|
||||
banner_image_id?: string;
|
||||
|
||||
Reference in New Issue
Block a user