Skip to content

Commit 6d61a18

Browse files
committed
fix: updated scorecard server url
1 parent 88e8fb1 commit 6d61a18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/apps/review/src/lib/hooks/useFetchScorecard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { xhrGetAsync } from '~/libs/core'
88

99
import { Scorecard } from '../models'
1010

11-
const baseUrl = `${EnvironmentConfig.API.V6}/review`
11+
const baseUrl = `${EnvironmentConfig.API.V6}`
1212

1313
interface ScorecardResponse {
1414
scorecard: Scorecard | undefined

src/apps/review/src/lib/hooks/useFetchScorecards.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface ScorecardsResponse {
2222
isValidating: boolean
2323
}
2424

25-
const baseUrl = `${EnvironmentConfig.API.V6}/review`
25+
const baseUrl = `${EnvironmentConfig.API.V6}`
2626

2727
const PAGE_SIZE = 20
2828

0 commit comments

Comments
 (0)