Fix missing comma in getWeeklyReportsForProject function signature
This commit is contained in:
parent
adf9500bbf
commit
89cb3d23b7
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ export const api: API = {
|
|||
async getWeeklyReportsForProject(
|
||||
username: string,
|
||||
projectName: string,
|
||||
token: string
|
||||
token: string,
|
||||
): Promise<APIResponse<WeeklyReport[]>> {
|
||||
try {
|
||||
const response = await fetch("/api/getWeeklyReportsUser", {
|
||||
|
|
Loading…
Reference in a new issue