We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07a90b0 commit b292d32Copy full SHA for b292d32
src/api/BenchmarkServices.ts
@@ -32,12 +32,4 @@ export class BenchmarkServices {
32
return response.data;
33
});
34
}
35
-
36
- static async getBenchmarkById(id: string): Promise<benchmarkModel> {
37
- return axios
38
- .get(`${process.env.REACT_APP_API_ENDPOINT}/benchmarks/${id}`)
39
- .then((response) => {
40
- return response.data;
41
- });
42
- }
43
src/hooks/benchmark.ts
@@ -16,7 +16,6 @@ export default function useBenchmarkDetail(id: string) {
16
},
17
18
);
19
- console.log(data);
20
return data;
21
22
0 commit comments