Skip to content

Commit

Permalink
Fix extra slash issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jhutchings1 committed Mar 22, 2024
1 parent d920937 commit 2b0aaf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scorecard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export async function getScorecardLevels(
}

async function getScorecard(repositoryUrl: string): Promise<ScorecardApi> {
const apiRoot = 'https://api.securityscorecards.dev/'
const apiRoot = 'https://api.securityscorecards.dev'
let scorecardResponse: ScorecardApi = {} as ScorecardApi

const url = `${apiRoot}/projects/${repositoryUrl}`
Expand Down

0 comments on commit 2b0aaf1

Please sign in to comment.