From 42e4c7800af5ae9a0aadb49ea5526657f55bf31d Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 4 Jan 2025 20:21:57 +0200 Subject: [PATCH] chore(client): remove logs --- src/public/app/services/content_renderer.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/public/app/services/content_renderer.ts b/src/public/app/services/content_renderer.ts index 3f5115669..5fe3f4fad 100644 --- a/src/public/app/services/content_renderer.ts +++ b/src/public/app/services/content_renderer.ts @@ -35,7 +35,6 @@ async function getRenderedContent(this: {} | { ctx: string }, entity: FNote, opt // attachment supports only image and file/pdf/audio/video const $renderedContent = $('
'); - console.log(type); if (type === 'text') { await renderText(entity, $renderedContent); @@ -289,7 +288,6 @@ function getRenderingType(entity: FNote | FAttachment) { } const mime = ("mime" in entity && entity.mime); - console.log("MIME ", mime); if (type === 'file' && mime === 'application/pdf') { type = 'pdf';