We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d4e6c4 commit db0e185Copy full SHA for db0e185
1 file changed
client/src/services/seb-server/connectionConfigurationService.ts
@@ -31,11 +31,9 @@ export const getConnectionConfigurationsActive =
31
export const downloadExamConfig = async (
32
examId: string,
33
connectionId: string,
34
-): Promise<Blob> => {
35
- console.info("************** examId: " + examId);
36
- return (
+): Promise<Blob> =>
+ (
37
await apiService.getRequest({
38
- //url: `${baseUrl}/download/${connectionId}?id=${examId}`,
39
url: `${baseUrl}/download/${connectionId}`,
40
options: {
41
params: { id: examId },
@@ -46,7 +44,6 @@ export const downloadExamConfig = async (
46
44
},
47
45
})
48
).data;
49
-};
50
51
export const getConnectionConfiguration = async (
52
id: number,
0 commit comments