fix typo in comments
This commit is contained in:
parent
0d7efb2357
commit
9143bacbe5
1 changed files with 2 additions and 2 deletions
|
@ -75,8 +75,8 @@ function ItemsPage() {
|
||||||
);
|
);
|
||||||
|
|
||||||
// This helps you compare your owns/wants to other users! If they own
|
// This helps you compare your owns/wants to other users! If they own
|
||||||
// something, and you want it, we say "You own this!". And if they want
|
// something, and you want it, we say "You want this!". And if they want
|
||||||
// something, and you own it, we say "You want this!".
|
// something, and you own it, we say "You own this!".
|
||||||
const showYouOwnThisBadge = (item) =>
|
const showYouOwnThisBadge = (item) =>
|
||||||
!isCurrentUser && itemIdsYouOwn.has(item.id);
|
!isCurrentUser && itemIdsYouOwn.has(item.id);
|
||||||
const showYouWantThisBadge = (item) =>
|
const showYouWantThisBadge = (item) =>
|
||||||
|
|
Loading…
Reference in a new issue