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.
2 parents 3477ac8 + fbd049a commit be4e60eCopy full SHA for be4e60e
src/components/sections/bounties/Navigation.tsx
@@ -55,7 +55,7 @@ export default function BountiesNavigation(): ReactElement {
55
...UniqBy(
56
bounties.map((bounty) => {
57
return {
58
- label: bounty.name,
+ label: bounty.community,
59
exact: true,
60
link: `/bounties/${bounty.slug}`,
61
};
src/types/bounty.d.ts
@@ -28,6 +28,7 @@ export interface Bounty {
28
submissions?: Submission;
29
author?: BountyAuthor;
30
unreviewedSubmissionsCount?: number;
31
+ community: string;
32
}
33
34
export interface BountyCourse extends Course {
0 commit comments