Skip to content

Commit

Permalink
Merge pull request #81 from taver-ca/dev
Browse files Browse the repository at this point in the history
Clear Artist wish list
  • Loading branch information
sam9116 authored Jul 27, 2024
2 parents 52eb428 + 89c29fc commit 9e7646a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ConcertList.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ class ConcertList extends React.Component {

const onClearAllPress = () => {
if (window.confirm("Are you sure you want to clear all your events?")) {
this.props.setConcerts([]);
this.props.setConcerts([])
this.props.setArtistWishlist([])
} else {
return;
}
Expand Down

0 comments on commit 9e7646a

Please sign in to comment.