Fix TypeScript strict mode errors

This commit is contained in:
gpt-engineer-app[bot]
2025-11-03 03:29:29 +00:00
parent 3c13b7a9f4
commit 288e87bcd3
11 changed files with 132 additions and 120 deletions

View File

@@ -324,9 +324,9 @@ export interface RideCoasterStat {
ride_id: string;
stat_name: string;
stat_value: number;
unit?: string | null;
category?: string | null;
description?: string | null;
unit?: string;
category?: string;
description?: string;
display_order: number;
created_at: string;
updated_at: string;

View File

@@ -12,7 +12,6 @@ export interface BaseItemData {
name?: string;
slug?: string;
description?: string;
[key: string]: Json;
}
/**