From af5693c4958262f7a346bf31fe4ed95ee386353b Mon Sep 17 00:00:00 2001 From: Shawn Carr Date: Thu, 21 Nov 2019 17:02:00 -0500 Subject: [PATCH] fix: open issues looking at wrong label Change the label for open issues from 'status: help wanted' to 'help wanted' --- src/components/ContributorArea/OpenIssues.js | 6 +++--- src/components/Dashboard/OpenIssues.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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) {