From f72490093aceecd2c6888f890212ccff09370d9f Mon Sep 17 00:00:00 2001 From: Juanan Pereira Date: Thu, 9 Jan 2025 18:56:40 +0100 Subject: [PATCH] fix frontend format --- src/lib/utils/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/utils/index.ts b/src/lib/utils/index.ts index 1d2095780..82b30b2d6 100644 --- a/src/lib/utils/index.ts +++ b/src/lib/utils/index.ts @@ -74,7 +74,6 @@ export const processResponseContent = (content: string) => { return content.trim(); }; - export function unescapeHtml(html: string) { const doc = new DOMParser().parseFromString(html, 'text/html'); return doc.documentElement.textContent;