hide party invite

This commit is contained in:
Daniel Bulant 2026-05-04 13:41:33 +02:00
parent ba5274e726
commit fb05e624b7
No known key found for this signature in database

View file

@ -17,7 +17,7 @@ function App() {
<MainContent>
<UserInfo />
{!user?.lastSyncAt && <SyncButton />}
{user && <PartyQr />}
{user && party?.data?.status != "running" && <PartyQr />}
{party && !party.data && members.length > 1 && <StartParty />}
{party?.data && <PartyView />}
</MainContent>