Skip to content

Commit

Permalink
Remove the "have a kiwi" message from upvote toast
Browse files Browse the repository at this point in the history
  • Loading branch information
TimDaub committed Dec 2, 2024
1 parent 079da5b commit 59d39d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/src/Vote.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const Vote = (props) => {
console.log(response);
let message;
if (response.status === "success") {
toast.success("Thanks for your upvote! Have a 🥝");
toast.success("Thanks for your upvote!");
setUpvotes(upvotes + 1);
} else if (response.details.includes("You must mint")) {
// NOTE: This should technically never happen, but if it does we pop open
Expand Down

0 comments on commit 59d39d2

Please sign in to comment.