Remove console.error in share.js (ESLint no-console)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Serreau Jovann
2026-03-23 18:45:22 +01:00
parent d4e30abffb
commit 4e49553c3d

View File

@@ -16,8 +16,8 @@ async function handleCopyClick(event) {
setTimeout(() => {
btn.innerHTML = original;
}, 1500);
} catch (err) {
console.error('Failed to copy text: ', err);
} catch {
// Clipboard API not available
}
}