diff --git a/frontend/app/components/shared/Filters/FilterList/FilterList.tsx b/frontend/app/components/shared/Filters/FilterList/FilterList.tsx index 28727496d..272a525fb 100644 --- a/frontend/app/components/shared/Filters/FilterList/FilterList.tsx +++ b/frontend/app/components/shared/Filters/FilterList/FilterList.tsx @@ -81,7 +81,6 @@ function FilterList(props: Props) { ev.dataTransfer.setData("text/plain", index.toString()); setDraggedItem(index); const el = document.getElementById(elId); - console.log(el, ev); if (el) { ev.dataTransfer.setDragImage(el, 0, 0); } @@ -90,7 +89,6 @@ function FilterList(props: Props) { const handleDrop = React.useCallback( (event: Record) => { event.preventDefault(); - console.log(draggedInd) if (draggedInd === null) return; const newItems = filters.toArray(); const newPosition = calculateNewPosition( diff --git a/frontend/app/mstore/types/filter.ts b/frontend/app/mstore/types/filter.ts index 862e412d1..6f6e5dba9 100644 --- a/frontend/app/mstore/types/filter.ts +++ b/frontend/app/mstore/types/filter.ts @@ -51,7 +51,6 @@ export default class Filter { } replaceFilters(filters: any) { - console.log(filters, this.filters) this.filters = filters; } diff --git a/frontend/app/mstore/uxtestingStore.ts b/frontend/app/mstore/uxtestingStore.ts index c9890bb8e..c636146cb 100644 --- a/frontend/app/mstore/uxtestingStore.ts +++ b/frontend/app/mstore/uxtestingStore.ts @@ -107,7 +107,6 @@ export default class UxtestingStore { ...this.instance!, status, }; - console.log(test); this.updateInstStatus(status); await this.client.updateTest(this.instance.testId!, test); } catch (e) { diff --git a/frontend/app/player/web/managers/CanvasManager.ts b/frontend/app/player/web/managers/CanvasManager.ts index 57d05f499..f7cc4b958 100644 --- a/frontend/app/player/web/managers/CanvasManager.ts +++ b/frontend/app/player/web/managers/CanvasManager.ts @@ -35,7 +35,6 @@ export default class CanvasManager extends ListWalker { private readonly getNode: (id: number) => VElement | undefined ) { super(); - console.log(links); // first we try to grab tar, then fallback to mp4 this.loadTar() .then((fileArr) => {