Remove unused html2canvas import to fix production build

- Removed html2canvas import that was causing TypeScript error
- html2canvas is no longer needed since we switched to jsPDF's html() method
- Fixes build error: TS6133 'html2canvas' is declared but never read
This commit is contained in:
drelich
2026-03-17 11:34:41 +01:00
parent 55f50f3a77
commit 89c161f2f3

View File

@@ -6,7 +6,6 @@ import Strike from '@tiptap/extension-strike';
import TurndownService from 'turndown';
import { marked } from 'marked';
import jsPDF from 'jspdf';
import html2canvas from 'html2canvas';
import { message } from '@tauri-apps/plugin-dialog';
import { Note } from '../types';