Skip to content

Commit

Permalink
fix: remove always show toast
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 committed Dec 29, 2023
1 parent 3401f05 commit c592062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/search/search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const Search = () => {

const numSearches = gezSearches ? parseInt(gezSearches) : 0;

if (true || (!dismissedRecently && numSearches > 2)) {
if (!dismissedRecently && numSearches > 2) {
toast({
title: "Enjoying GE-Z?",
description:
Expand Down

0 comments on commit c592062

Please sign in to comment.