Fix order of parameters in getStatistics function in API.ts
This commit is contained in:
parent
97f810fce2
commit
c96c0d7b4d
1 changed files with 1 additions and 1 deletions
|
@ -979,8 +979,8 @@ export const api: API = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async getStatistics(
|
async getStatistics(
|
||||||
token: string,
|
|
||||||
projectName: string,
|
projectName: string,
|
||||||
|
token: string,
|
||||||
): Promise<APIResponse<Statistics>> {
|
): Promise<APIResponse<Statistics>> {
|
||||||
try {
|
try {
|
||||||
const response = await fetch(
|
const response = await fetch(
|
||||||
|
|
Loading…
Reference in a new issue