Skip to content

Commit

Permalink
EW-1060 removed console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Fshmit committed Dec 18, 2024
1 parent 9f15e8f commit dd29b17
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/store/course-room-details.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,7 @@ export default class CourseRoomDetailsModule extends VuexModule {
columnBoards: string[];
}): Promise<void> {
this.resetBusinessError();
console.log("exportSettings", exportSettings);
try {
console.log("making the request");
const response =
await this.commonCartridgeApi.commonCartridgeControllerExportCourse(
this.roomData.roomId,
Expand All @@ -222,8 +220,6 @@ export default class CourseRoomDetailsModule extends VuexModule {
}
);

console.log("response", response);

const link = document.createElement("a");
link.href = URL.createObjectURL(
new Blob([response.data as unknown as Blob])
Expand All @@ -234,8 +230,6 @@ export default class CourseRoomDetailsModule extends VuexModule {
link.click();
URL.revokeObjectURL(link.href);
} catch (error: any) {
console.log("error", error);

this.setBusinessError({
statusCode: error?.response?.status,
message: error?.response?.statusText,
Expand Down

0 comments on commit dd29b17

Please sign in to comment.