liharryboy

Results 2 comments of liharryboy

When executing navigator.clipboard in Chrome's DevTools console, it returns undefined. Upon further research, it was found that the browser has disabled the navigator.clipboard object for non-secure domains. Which addresses are...

try use these code, in ``` #ChatMessage.tsx, if (!navigator.clipboard || !navigator.clipboard.writeText) { const textArea = document.createElement('textarea'); textArea.value = message.content; document.body.appendChild(textArea); textArea.focus(); textArea.select(); document.execCommand('copy'); textArea.remove(); setMessageCopied(true); setTimeout(() => { setMessageCopied(false); },...