From 89c29fc65c671f62e08280a6bebba2baf0a194b6 Mon Sep 17 00:00:00 2001 From: BasilJohn Date: Sat, 27 Jul 2024 13:45:46 -0600 Subject: [PATCH] Clear Artist wish list --- src/ConcertList.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ConcertList.js b/src/ConcertList.js index b8ed1b9..f99f563 100644 --- a/src/ConcertList.js +++ b/src/ConcertList.js @@ -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; }