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(
|
async getWeeklyReportsForProject(
|
||||||
username: string,
|
username: string,
|
||||||
projectName: string,
|
projectName: string,
|
||||||
token: string
|
token: string,
|
||||||
): Promise<APIResponse<WeeklyReport[]>> {
|
): Promise<APIResponse<WeeklyReport[]>> {
|
||||||
try {
|
try {
|
||||||
const response = await fetch("/api/getWeeklyReportsUser", {
|
const response = await fetch("/api/getWeeklyReportsUser", {
|
||||||
|
|
Loading…
Reference in a new issue