This commit is contained in:
Mateusz Gruszczyński
2026-07-20 15:59:15 +02:00
parent 771494671b
commit dfa0828c38
42 changed files with 964 additions and 755 deletions
+1 -1
View File
@@ -12,5 +12,5 @@ export async function copyText(text) {
input.select();
const copied = document.execCommand("copy");
input.remove();
if (!copied) throw new Error("Nie udało się skopiować linku");
if (!copied) throw new Error("Failed to copy the link");
}