fix: issues with usage

This commit is contained in:
Christy Jacob
2022-11-18 00:28:18 +05:30
parent 2f6ba45084
commit 4e2cecefb5
2 changed files with 0 additions and 4 deletions
-3
View File
@@ -50,9 +50,6 @@ export class Project extends Service {
let path = '/project/usage';
let payload: Payload = {};
console.log("Getting usage")
console.log(range)
if (typeof range !== 'undefined') {
payload['range'] = range;
}
@@ -11,7 +11,6 @@ export const usage = cachedStore<
return {
load: async (range) => {
const usages = await sdkForProject.project.getUsage(range);
console.log(usages)
set(usages);
}
};