From b6527920d47e6f08cbb1b720f0a226e78a2b1248 Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 6 Dec 2023 20:17:10 +0000 Subject: [PATCH] 15 min slots --- src/app/components/PerformanceList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/PerformanceList.tsx b/src/app/components/PerformanceList.tsx index a099063..2a2d3ce 100644 --- a/src/app/components/PerformanceList.tsx +++ b/src/app/components/PerformanceList.tsx @@ -13,7 +13,7 @@ interface Props { setTotalStreamCount: (ttalStreamCount: number | null) => void; } -const SLOT_DURATION_MIN = 20; +const SLOT_DURATION_MIN = 15; const PerformanceList = ({slug, eventUrl, startsAt, endsAt, setReservedStreamCount, setTotalStreamCount}: Props): ReactElement => { const muxyApiKey: string = (process.env.REACT_APP_MUXY_API_KEY as string);