import { toast } from '@redwoodjs/web/toast' function fallbackCopyTextToClipboard(text: string) { const textArea = document.createElement('textarea') textArea.value = text // Avoid scrolling to bottom textArea.style.top = '0' textArea.style.left = '0' textArea.style.position = 'fixed' document.body.appendChild(textArea) textArea.focus() textArea.select() try { const successful = document.execCommand('copy') const msg = successful ? 'successful' : 'unsuccessful' console.log('Fallback: Copying text command was ' + msg) } catch (err) { console.error('Fallback: Oops, unable to copy', err) } document.body.removeChild(textArea) } const clipboardSuccessToast = (text: string) => toast.success(() => (
link added to clipboard.