From 978e132c703a43c6e56ee8af0341d0d5b8eb92ff Mon Sep 17 00:00:00 2001 From: elpatron Date: Wed, 3 Jun 2026 11:50:01 +0200 Subject: [PATCH] Remove unused decryptJson import after crew decrypt fix. Fixes client TypeScript build blocked by pre-deploy checks. Co-authored-by: Cursor --- client/src/components/LogEntriesList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/LogEntriesList.tsx b/client/src/components/LogEntriesList.tsx index 6cfa6dd..abfcbe8 100644 --- a/client/src/components/LogEntriesList.tsx +++ b/client/src/components/LogEntriesList.tsx @@ -3,7 +3,7 @@ import { useTranslation } from 'react-i18next' import { db } from '../services/db.js' import { getActiveMasterKey } from '../services/auth.js' import { getLogbookKey } from '../services/logbookKeys.js' -import { decryptJson, encryptJson } from '../services/crypto.js' +import { encryptJson } from '../services/crypto.js' import { syncLogbook } from '../services/sync.js' import { downloadCsv, shareCsv } from '../services/csvExport.js' import { downloadLogbookPagePdf } from '../services/pdfExport.js'