Skip to content

Commit db0e185

Browse files
committed
code cleanup
1 parent 3d4e6c4 commit db0e185

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

client/src/services/seb-server/connectionConfigurationService.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,9 @@ export const getConnectionConfigurationsActive =
3131
export const downloadExamConfig = async (
3232
examId: string,
3333
connectionId: string,
34-
): Promise<Blob> => {
35-
console.info("************** examId: " + examId);
36-
return (
34+
): Promise<Blob> =>
35+
(
3736
await apiService.getRequest({
38-
//url: `${baseUrl}/download/${connectionId}?id=${examId}`,
3937
url: `${baseUrl}/download/${connectionId}`,
4038
options: {
4139
params: { id: examId },
@@ -46,7 +44,6 @@ export const downloadExamConfig = async (
4644
},
4745
})
4846
).data;
49-
};
5047

5148
export const getConnectionConfiguration = async (
5249
id: number,

0 commit comments

Comments
 (0)