1
1
mirror of https://github.com/bumi/lntip synced 2026-02-15 21:47:49 +00:00

Merge pull request #35 from AaronDewes/patch-1

Fix typo
This commit is contained in:
2022-04-18 17:27:51 +02:00
committed by GitHub

View File

@@ -148,7 +148,7 @@ class LnMe {
this.target.querySelectorAll('.lnme-copy').forEach(element => { this.target.querySelectorAll('.lnme-copy').forEach(element => {
element.addEventListener('click', (e) => { element.addEventListener('click', (e) => {
navigator.clipboard.writeText(this.invoice.payment_request).then(() => { navigator.clipboard.writeText(this.invoice.payment_request).then(() => {
alert('Copied to clipboad'); alert('Copied to clipboard');
}); });
}); });
}); });