From a78f4e99d07db47c088e3aadf3da14aada7b0401 Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Mon, 11 Jan 2021 01:20:53 -0500 Subject: [PATCH] Removed trivial browser log that occured at file deletion --- src/app/components/recent-videos/recent-videos.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/components/recent-videos/recent-videos.component.ts b/src/app/components/recent-videos/recent-videos.component.ts index f213e12..6aec7f2 100644 --- a/src/app/components/recent-videos/recent-videos.component.ts +++ b/src/app/components/recent-videos/recent-videos.component.ts @@ -282,7 +282,6 @@ export class RecentVideosComponent implements OnInit { } removeFileCard(file_to_remove) { - console.log(file_to_remove.uid); const index = this.files.map(e => e.uid).indexOf(file_to_remove.uid); this.files.splice(index, 1); if (this.search_mode) {