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 1f9b5b8 commit c9c0355Copy full SHA for c9c0355
src/pages/bounties/index.tsx
@@ -56,8 +56,6 @@ export default function Bounties() {
56
bounties: (state: IRootState) => state.bounties.bountiesList,
57
});
58
59
- const bountiesList = useMemo(() => [...(bounties || [])], [bounties]);
60
-
61
62
return (
63
<div className="flex justify-center content-wrapper">
@@ -66,7 +64,7 @@ export default function Bounties() {
66
64
</div>
67
65
<div className="flex-col w-full">
68
<h1 className="text-4xl sm:text-5xl pt-10 md:pt-20 pb-10">{t("nav.bounties")}</h1>
69
- <BountyList bounties={bountiesList as Bounty[]} referrals={referrals} />
+ <BountyList bounties={bounties as Bounty[]} referrals={referrals} />
70
71
72
);
0 commit comments