Skip to content

Commit

Permalink
Update wishlist.js
Browse files Browse the repository at this point in the history
  • Loading branch information
aravindballa committed Jul 16, 2024
1 parent 19161c1 commit b3117af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/wishlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const gifts = {
description:
'The LAMY vista Fountain Pen offers a clear view of its inner workings with its transparent design. It features a polished steel nib, ergonomic grip, and includes an ink cartridge and converter. Perfect for young enthusiasts!',
price: '3,105',
active: true,
active: false,
},
],
},
Expand Down Expand Up @@ -176,7 +176,7 @@ export default function WishlistPage() {
{subheading && <p>{subheading}</p>}
<ul>
{items.map((item) => (
<li key={item.title}>
<li key={item.title} className={item.active ? '' : 'line-through'}>
<a href={item.link || '#'} target="_blank" rel="noopener noreferrer">
{item.title}
</a>{' '}
Expand Down

0 comments on commit b3117af

Please sign in to comment.