fix: Hide FamiliarFollowers widget when logged out (#34678)

This commit is contained in:
diondiondion 2025-05-13 19:55:16 +02:00 committed by GitHub
parent cc57fa4a41
commit 865a30ab0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1023,7 +1023,7 @@ export const AccountHeader: React.FC<{
/> />
</NavLink> </NavLink>
</div> </div>
<FamiliarFollowers accountId={accountId} /> {signedIn && <FamiliarFollowers accountId={accountId} />}
</div> </div>
)} )}
</div> </div>