From fd0e83c75adcd4045c0ebcbf2d2633d2ef23d74e Mon Sep 17 00:00:00 2001 From: Ryan Lau <47727459+ryanlau@users.noreply.github.com> Date: Mon, 13 Apr 2026 10:38:10 -0400 Subject: [PATCH 1/2] add HTX filter --- src/data/dataFilters.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/data/dataFilters.ts b/src/data/dataFilters.ts index 5df6db4..3bb1de8 100644 --- a/src/data/dataFilters.ts +++ b/src/data/dataFilters.ts @@ -6,17 +6,17 @@ */ export const eventType: string[] = [ "Acceleration", // Event type for acceleration tests. - "Endurance", // Event type for endurance tests. - "Skidpad", // Event type for skidpad tests. - "Autocross", // Event type for autocross tests. + "Endurance", // Event type for endurance tests. + "Skidpad", // Event type for skidpad tests. + "Autocross", // Event type for autocross tests. ]; /** * Represents the list of possible car models. * - */ + */ export const carModel: string[] = [ "HT08", // 2023-2024 Car "HT09", // 2024-2025 Car -] - + "HTX", +]; From e62790649526c78bf050f5b68335997e50d5eec8 Mon Sep 17 00:00:00 2001 From: Ryan Lau <47727459+ryanlau@users.noreply.github.com> Date: Mon, 13 Apr 2026 10:38:39 -0400 Subject: [PATCH 2/2] add Event Type column --- src/components/DataTable.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/DataTable.tsx b/src/components/DataTable.tsx index ff1c0ab..e9fbe04 100644 --- a/src/components/DataTable.tsx +++ b/src/components/DataTable.tsx @@ -63,6 +63,7 @@ export default function DataTable({ : null}