mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-07-19 17:12:58 -05:00
Seasons: Show text if no reported weapons yet
This commit is contained in:
parent
35e5f972de
commit
0800a58966
|
|
@ -275,6 +275,11 @@ function Weapons({
|
|||
|
||||
return (
|
||||
<div className="stack sm horizontal justify-center flex-wrap">
|
||||
{weapons.length === 0 ? (
|
||||
<div className="text-lighter font-bold my-4">
|
||||
No reported weapons yet
|
||||
</div>
|
||||
) : null}
|
||||
{slicedWeapons.map(({ count, weaponSplId }) => (
|
||||
<WeaponCircle
|
||||
key={weaponSplId}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user