Skip to content

Commit

Permalink
Change name of shop items
Browse files Browse the repository at this point in the history
  • Loading branch information
tmrdlt committed Jan 18, 2024
1 parent 018bef3 commit a8d2727
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/shop-page/shop-page.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ export class ShopPageComponent implements OnInit {

pageItem: Item = {
id: '1',
name: 'TagCommander',
name: 'Shop Item 1',
price: 20,
quantity: 0
};
cartItems: Array<Item> = [
{
id: '2',
name: 'TagCommanderBis',
name: 'Shop Item 2',
price: 90,
quantity: 2
}
Expand Down

0 comments on commit a8d2727

Please sign in to comment.