mirror of
https://github.com/chase-manning/pokemon-js.git
synced 2025-08-01 08:39:13 +00:00
🐛 item names are wrong
This commit is contained in:
parent
060b6d97e4
commit
f7ad7f918d
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ const ItemsMenu = () => {
|
|||
)
|
||||
.map((item: InventoryItemType, index) => {
|
||||
return {
|
||||
label: item.item,
|
||||
label: itemData[item.item].name,
|
||||
value: item.amount,
|
||||
action: () => setSelected(index),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue