From 3e3ddb263f2bd0219f1bb7daa3c4b18fa480052f Mon Sep 17 00:00:00 2001 From: Ashley Smith Date: Tue, 15 Oct 2024 21:19:50 -0600 Subject: [PATCH] only need to check if participant exists --- src/web/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/App.tsx b/src/web/App.tsx index d16e2d3f..10e01917 100644 --- a/src/web/App.tsx +++ b/src/web/App.tsx @@ -28,7 +28,7 @@ function AppContent() { if (LoggedInUser?.user?.participants!.length === 0) { return ; } - if (LoggedInUser && (!participant || !participant.id)) { + if (LoggedInUser && !participant) { return ; }