mirror of
https://github.com/chase-manning/pokemon-js.git
synced 2025-08-26 03:07:14 +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) => {
|
.map((item: InventoryItemType, index) => {
|
||||||
return {
|
return {
|
||||||
label: item.item,
|
label: itemData[item.item].name,
|
||||||
value: item.amount,
|
value: item.amount,
|
||||||
action: () => setSelected(index),
|
action: () => setSelected(index),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue