Skip to content
This repository was archived by the owner on Jun 26, 2026. It is now read-only.

Commit 4291e01

Browse files
committed
Fix missing catch in clipboard navigation
1 parent a37f987 commit 4291e01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pages/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ <h5 class="card-title">plugin.yaml</h5>
230230
navigator.clipboard.writeText(text).then(() => {
231231
btn.classList.add('copied');
232232
setTimeout(() => { btn.classList.remove('copied'); }, 1500);
233-
});
233+
}).catch(() => {});
234234
});
235235
});
236236

0 commit comments

Comments
 (0)