clipboad -> clipboard
This commit is contained in:
Aaron Dewes 2022-04-18 17:24:43 +02:00 committed by GitHub
parent e400782449
commit a9a3e8b073
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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