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',