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 }; 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" }