We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba8f591 commit 1f9b5b8Copy full SHA for 1f9b5b8
src/pages/bounties/index.tsx
@@ -56,7 +56,6 @@ export default function Bounties() {
56
bounties: (state: IRootState) => state.bounties.bountiesList,
57
});
58
59
- // const bountiesList = useMemo(() => [defaulBounty, ...(bounties || [])], [bounties]);
60
const bountiesList = useMemo(() => [...(bounties || [])], [bounties]);
61
62
@@ -66,7 +65,7 @@ export default function Bounties() {
66
65
<Navigation />
67
</div>
68
<div className="flex-col w-full">
69
- {/* <h1 className="text-4xl sm:text-5xl pt-10 md:pt-20 pb-10">{t("nav.bounties")}</h1> */}
+ <h1 className="text-4xl sm:text-5xl pt-10 md:pt-20 pb-10">{t("nav.bounties")}</h1>
70
<BountyList bounties={bountiesList as Bounty[]} referrals={referrals} />
71
72
0 commit comments