diff --git a/src/lib/components/VerseDisplay.svelte b/src/lib/components/VerseDisplay.svelte index 42ef94c..b73b569 100644 --- a/src/lib/components/VerseDisplay.svelte +++ b/src/lib/components/VerseDisplay.svelte @@ -53,12 +53,7 @@ }); function copyVerse() { - const fullReference = dailyVerse.reference.replace( - /^Psalms /, - "Psalm ", - ); - const textToCopy = `"${displayVerseText}" — ${fullReference}`; - navigator.clipboard.writeText(textToCopy).then(() => { + navigator.clipboard.writeText(displayVerseText).then(() => { copied = true; (window as any).rybbit?.event("Copy Verse"); setTimeout(() => {