From b4fe0db7f4d9b25b921138bd73e1076941bff8b1 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Fri, 1 Aug 2025 21:52:17 +0000 Subject: [PATCH] fix(web): don't hard dep webcrypto anymore Signed-off-by: Xe Iaso --- web/js/main.mjs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/web/js/main.mjs b/web/js/main.mjs index a98a69d..d9d96c9 100644 --- a/web/js/main.mjs +++ b/web/js/main.mjs @@ -69,11 +69,6 @@ const t = (key) => translations[`js_${key}`] || translations[key] || key; await initTranslations(); const dependencies = [ - { - name: "WebCrypto", - msg: t('web_crypto_error'), - value: window.crypto, - }, { name: "Web Workers", msg: t('web_workers_error'),