From 6b0040b3d195e0366a0840761fd3d5633d30195c Mon Sep 17 00:00:00 2001 From: Niraj Nandish Date: Wed, 30 Jun 2021 13:51:31 +0400 Subject: [PATCH] Contributor tools searches from all PRs (#42630) --- tools/contributor/dashboard-app/server/tools/get-prs.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/contributor/dashboard-app/server/tools/get-prs.js b/tools/contributor/dashboard-app/server/tools/get-prs.js index 7f0715b5210..b9c6de81d67 100644 --- a/tools/contributor/dashboard-app/server/tools/get-prs.js +++ b/tools/contributor/dashboard-app/server/tools/get-prs.js @@ -1,7 +1,7 @@ const { Octokit } = require('@octokit/rest'); const { - github: { owner, secret, freeCodeCampRepo, defaultBase } + github: { owner, secret, freeCodeCampRepo } } = require('../../../lib/config'); const getPRs = async () => { @@ -11,7 +11,6 @@ const getPRs = async () => { const methodProps = { owner, repo: freeCodeCampRepo, - base: defaultBase, state: 'open', sort: 'created', direction: 'asc',