Skip to content

Commit

Permalink
disable project explore tab (gitcoinco#3373)
Browse files Browse the repository at this point in the history
* fix

* fix
  • Loading branch information
thelostone-mc authored and debuggingfuture committed May 19, 2024
1 parent dc55442 commit 366a948
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export function ExploreProjectsPage(): JSX.Element {
action={
collection && (
<div className="font-mono flex gap-x-4">
<form
{/* <form
className="relative"
onSubmit={onSearchSubmit}
onBlur={onSearchSubmit}
Expand Down Expand Up @@ -232,7 +232,7 @@ export function ExploreProjectsPage(): JSX.Element {
options={FILTER_OPTIONS}
/>
</div>
)}
)} */}
</div>
)
}
Expand Down
12 changes: 6 additions & 6 deletions packages/grant-explorer/src/features/discovery/LandingTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ export default function LandingTabs() {
children: isDesktop ? "Explore rounds" : "Rounds",
tabName: "home-rounds-tab",
},
{
to: "/projects",
activeRegExp: /^\/projects/,
children: isDesktop ? "Explore projects" : "Projects",
tabName: "home-projects-tab",
},
// {
// to: "/projects",
// activeRegExp: /^\/projects/,
// children: isDesktop ? "Explore projects" : "Projects",
// tabName: "home-projects-tab",
// },
];

return (
Expand Down

0 comments on commit 366a948

Please sign in to comment.