mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-16 17:49:09 +00:00
fix(web): don't show ServerListing recents when recents is empty
This commit is contained in:
parent
d0f9010ea8
commit
18c136e082
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ export const ServersListing = (props: ServersListingProps) => {
|
|||
|
||||
return (
|
||||
<ContentContainer>
|
||||
{recentGuildSlugs && (
|
||||
{recentGuildSlugs.length !== 0 && (
|
||||
<>
|
||||
<SectionHead>Recent Guilds</SectionHead>
|
||||
<CardList guilds={recentGuildSlugs} />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue