Skip to content

Commit

Permalink
make vercel stop yelling at me hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
CHarris0812 committed Oct 1, 2024
1 parent 1cabb03 commit a1690d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ClubSearchComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ export const ClubSearchComponent = ({
return <p />;
}
if (data.length === 0) {
return <p>No results found for "{userSearch}".</p>;
return <p>No results found</p>;
}

return (
<div className="grid w-full auto-rows-fr grid-cols-[repeat(auto-fill,320px)] justify-center gap-16 pb-4">
{data.map((club: Club, index: number) => (
{data.map((club: Club) => (
<DirectoryOrgs key={club.id} club={club} session={session} priority />
))}
</div>
Expand Down

0 comments on commit a1690d7

Please sign in to comment.