From eca0431e896ee1e19dab10294f83b72a0e984b72 Mon Sep 17 00:00:00 2001 From: robin Date: Fri, 30 Sep 2022 14:20:06 +0800 Subject: [PATCH] fix: solve the problem that pictures cannot be uploaded through the clipboard --- ui/src/components/Editor/ToolBars/image.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/Editor/ToolBars/image.tsx b/ui/src/components/Editor/ToolBars/image.tsx index fdde738d..5f4475a2 100644 --- a/ui/src/components/Editor/ToolBars/image.tsx +++ b/ui/src/components/Editor/ToolBars/image.tsx @@ -105,7 +105,7 @@ const Image: FC = ({ editor }) => { editor.replaceRange(text.join('\n'), startPos, endPos); }; - const paste = async (event) => { + const paste = async (_, event) => { const clipboard = event.clipboardData; const bool = verifyImageSize(clipboard.files);