diff --git a/backend/requirements.txt b/backend/requirements.txt index b41365f9ea..d5648f28b1 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -6,6 +6,7 @@ python-multipart==0.0.20 python-socketio==5.13.0 python-jose==3.4.0 passlib[bcrypt]==1.7.4 +cryptography requests==2.32.4 aiohttp==3.11.11 diff --git a/pyproject.toml b/pyproject.toml index 00d547988f..58e0dfb8f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ dependencies = [ "python-socketio==5.13.0", "python-jose==3.4.0", "passlib[bcrypt]==1.7.4", + "cryptography", "requests==2.32.4", "aiohttp==3.11.11", diff --git a/src/lib/components/notes/NoteEditor.svelte b/src/lib/components/notes/NoteEditor.svelte index d9fd7276c5..61d7256ddb 100644 --- a/src/lib/components/notes/NoteEditor.svelte +++ b/src/lib/components/notes/NoteEditor.svelte @@ -873,9 +873,9 @@ Provide the enhanced notes in markdown format. Use markdown syntax for headings, { note.data.content.html = content.html;