From 8109577e8d5e1d5c50b3c17ae0e3bd627a620143 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Tue, 28 Feb 2023 07:50:07 -0600 Subject: [PATCH] Hide start stream button while empty team --- src/data/projEntry.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/projEntry.tsx b/src/data/projEntry.tsx index 2364acd..befec5a 100644 --- a/src/data/projEntry.tsx +++ b/src/data/projEntry.tsx @@ -1224,7 +1224,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
{findingMatch.value ? (
Finding opposing team...
- ) : ( + ) : team.value.some(m => m != null) ? ( - )} + ) : null}