diff --git a/src/app/ItemsPage.js b/src/app/ItemsPage.js index 5f028ac..c54b840 100644 --- a/src/app/ItemsPage.js +++ b/src/app/ItemsPage.js @@ -100,7 +100,7 @@ function ItemsPage() { return ( - + {isCurrentUser ? "Items you own" : `Items ${data.user.username} owns`} @@ -118,7 +118,7 @@ function ItemsPage() { ))} - + {isCurrentUser ? "Items you want" : `Items ${data.user.username} wants`} diff --git a/src/app/components/ItemCard.js b/src/app/components/ItemCard.js index 0737d3f..e0c70e3 100644 --- a/src/app/components/ItemCard.js +++ b/src/app/components/ItemCard.js @@ -29,6 +29,7 @@ function ItemCard({ item, badges, ...props }) { borderColor={borderColor} className="item-card" width="100%" + minWidth="0" {...props} > + {children} );