From 25e301488215059d1538d1bf8f0e4018849c9d6f Mon Sep 17 00:00:00 2001 From: Arthur Belleville Date: Fri, 5 Dec 2025 09:28:52 +0100 Subject: [PATCH 1/3] Empty commit (test) --- apps/main/src/components/TabloEventsSection.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/main/src/components/TabloEventsSection.tsx b/apps/main/src/components/TabloEventsSection.tsx index 6ba1cb6..9ac5323 100644 --- a/apps/main/src/components/TabloEventsSection.tsx +++ b/apps/main/src/components/TabloEventsSection.tsx @@ -50,6 +50,7 @@ export const TabloEventsSection = ({ tablo, isAdmin }: TabloEventsSectionProps) const formatTime = (timeStr: string) => { if (!timeStr) return ""; + return timeStr.slice(0, 5); // HH:MM }; From 65e65e8de19c378a66f6c84735466e40b3249fb7 Mon Sep 17 00:00:00 2001 From: Arthur Belleville Date: Fri, 5 Dec 2025 09:52:17 +0100 Subject: [PATCH 2/3] Try passThroughEnv --- apps/main/turbo.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/apps/main/turbo.json b/apps/main/turbo.json index 05cf15b..3d1fc0f 100644 --- a/apps/main/turbo.json +++ b/apps/main/turbo.json @@ -32,11 +32,21 @@ }, "deploy:staging": { "dependsOn": ["build:staging"], + "passThroughEnv": [ + "CLOUDFLARE_ACCOUNT_ID", + "CLOUDFLARE_API_TOKEN", + "CUSTOM_BUILD_VAR" + ], "cache": false, "outputLogs": "new-only" }, "deploy:prod": { "dependsOn": ["build:prod"], + "passThroughEnv": [ + "CLOUDFLARE_ACCOUNT_ID", + "CLOUDFLARE_API_TOKEN", + "CUSTOM_BUILD_VAR" + ], "cache": false, "outputLogs": "new-only" } From f32a0a19a7731b708cc6197aa143e5c9d8da4b7c Mon Sep 17 00:00:00 2001 From: Arthur Belleville Date: Fri, 5 Dec 2025 10:37:36 +0100 Subject: [PATCH 3/3] Trigger