This commit is contained in:
Timothy Jaeryang Baek
2025-07-19 19:15:05 +04:00
parent d9a3b02e3f
commit 08ff9863d5
3 changed files with 26 additions and 16 deletions
+5 -1
View File
@@ -1082,7 +1082,11 @@ Provide the enhanced notes in markdown format. Use markdown syntax for headings,
}
}}
onCopyToClipboard={async () => {
const res = await copyToClipboard(note.data.content.md).catch((error) => {
const res = await copyToClipboard(
note.data.content.md,
note.data.content.html,
true
).catch((error) => {
toast.error(`${error}`);
return null;
});