mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-24 15:08:44 -05:00
fixed bug with 0 stick sens not showing
This commit is contained in:
parent
2beef1d01d
commit
9007ac5b14
|
|
@ -95,7 +95,7 @@ const AvatarWithInfo: React.FC<AvatarWithInfoProps> = ({ user, canEdit }) => {
|
|||
</a>
|
||||
</ListItem>
|
||||
)}
|
||||
{user.sens?.stick && (
|
||||
{user.sens && (!!user.sens.stick || user.sens.stick === 0) && (
|
||||
<ListItem>
|
||||
<ListIcon icon={FaGamepad} />
|
||||
{getSensString(user.sens.motion, user.sens.stick)}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user