Timothy Jaeryang Baek 3 달 전
부모
커밋
815d18b57e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/lib/components/chat/Messages/UserMessage.svelte

+ 1 - 1
src/lib/components/chat/Messages/UserMessage.svelte

@@ -53,7 +53,7 @@
 	}
 
 	const copyToClipboard = async (text) => {
-		const res = await _copyToClipboard(text, $settings?.copyFormatted ?? false);
+		const res = await _copyToClipboard(text);
 		if (res) {
 			toast.success($i18n.t('Copying to clipboard was successful!'));
 		}