Skip to content

Commit

Permalink
remove double :: on clipboard content
Browse files Browse the repository at this point in the history
  • Loading branch information
mskian committed Dec 17, 2024
1 parent 36bf488 commit e505f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function renderQuotes(page: number): void {
requestAnimationFrame(() => {
container.innerHTML = '';
quotesCache[page].forEach((quote) => {
const CopyWord = `✍️ Word: ${quote.word}\n📚 Definition: ${quote.definition}\n🗣 Pronunciation:: ${quote.pronunciation}`;
const CopyWord = `✍️ Word: ${quote.word}\n📚 Definition: ${quote.definition}\n🗣 Pronunciation: ${quote.pronunciation}`;
const card = document.createElement('div');
card.className = 'box';

Expand Down

0 comments on commit e505f04

Please sign in to comment.