diff --git a/src/components/ContributorArea/OpenIssues.js b/src/components/ContributorArea/OpenIssues.js index f140f1d3..5163d2a2 100644 --- a/src/components/ContributorArea/OpenIssues.js +++ b/src/components/ContributorArea/OpenIssues.js @@ -4,7 +4,7 @@ import styled from '@emotion/styled'; import { Query } from 'react-apollo'; import { GoMarkGithub } from 'react-icons/go'; -import { Subheading, Text } from './AreaTypography'; +import { Subheading } from './AreaTypography'; import OpenIssuesList from './OpenIssuesList'; import { Button as BaseButton } from '../shared/Buttons'; import { spacing } from '../../utils/styles'; @@ -30,7 +30,7 @@ const GitHubIssueFragment = gql` } `; -const GITHUB_LABEL = 'status: help wanted'; +const GITHUB_LABEL = 'help wanted'; const GET_OPEN_ISSUES = gql` query($label: String!) { @@ -63,7 +63,7 @@ const OpenIssues = () => ( diff --git a/src/components/Dashboard/OpenIssues.js b/src/components/Dashboard/OpenIssues.js index 440531e4..159b77bc 100644 --- a/src/components/Dashboard/OpenIssues.js +++ b/src/components/Dashboard/OpenIssues.js @@ -4,7 +4,7 @@ import { Query } from 'react-apollo'; import { Subheading, Text } from '../shared/Typography'; import IssueList, { GitHubIssueFragment } from './IssueList'; -const GITHUB_LABEL = 'status: help wanted'; +const GITHUB_LABEL = 'help wanted'; const GET_OPEN_ISSUES = gql` query($label: String!) { openIssues(label: $label) {