Skip to content

Commit

Permalink
fix(get-workspace-report-summary): fix a mistake + f
Browse files Browse the repository at this point in the history
  • Loading branch information
sijav committed Oct 20, 2023
1 parent f82ee12 commit f672ffd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const getWorkspaceReportSummaryQuery = ({
}: QueryFunctionContext<['workspace-report-summary', string | undefined]>) => {
return workspaceId
? axiosWithAuth
.get<GetWorkspaceInventoryReportSummaryResponse>(endPoints.workspaces.inventory.reportSummary(workspaceId) + 'f', { signal })
.get<GetWorkspaceInventoryReportSummaryResponse>(endPoints.workspaces.inventory.reportSummary(workspaceId), { signal })
.then((res) => res.data)
: undefined
}

0 comments on commit f672ffd

Please sign in to comment.