Skip to content

Commit 1f9b5b8

Browse files
committed
clean line code
1 parent ba8f591 commit 1f9b5b8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pages/bounties/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ export default function Bounties() {
5656
bounties: (state: IRootState) => state.bounties.bountiesList,
5757
});
5858

59-
// const bountiesList = useMemo(() => [defaulBounty, ...(bounties || [])], [bounties]);
6059
const bountiesList = useMemo(() => [...(bounties || [])], [bounties]);
6160

6261

@@ -66,7 +65,7 @@ export default function Bounties() {
6665
<Navigation />
6766
</div>
6867
<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> */}
68+
<h1 className="text-4xl sm:text-5xl pt-10 md:pt-20 pb-10">{t("nav.bounties")}</h1>
7069
<BountyList bounties={bountiesList as Bounty[]} referrals={referrals} />
7170
</div>
7271
</div>

0 commit comments

Comments
 (0)