don't show an empty pill when no game info is available
This commit is contained in:
@ -71,9 +71,11 @@ function StreamInfo({ ev, goal }: { ev?: TaggedNostrEvent; goal?: TaggedNostrEve
|
||||
<StreamTimer ev={ev} />
|
||||
</Pill>
|
||||
)}
|
||||
<Pill>
|
||||
<GameInfoCard gameId={gameId} gameInfo={gameInfo} showImage={false} link={true} />
|
||||
</Pill>
|
||||
{gameId && gameInfo && (
|
||||
<Pill>
|
||||
<GameInfoCard gameId={gameId} gameInfo={gameInfo} showImage={false} link={true} />
|
||||
</Pill>
|
||||
)}
|
||||
{ev && <Tags ev={ev} />}
|
||||
</div>
|
||||
{isMine && (
|
||||
|
Reference in New Issue
Block a user