Fix score-to-clipboard
dkl9

dkl9 commited on 2025-209 19:21:09
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -22,7 +22,7 @@ switch (window.location.hostname) {
22 22
                 note.textContent += (g <= m) ? `got it in ${g} guess${g == 1 ? "" : "es"}` : `didn't figure it out`;
23 23
                 note.textContent += ". Come back tomorrow. Full score on clipboard.";
24 24
                 container.prepend(note);
25
-                navigator.clipboard.writeText(score);
25
+                navigator.clipboard.writeText(score.join("\n"));
26 26
             }
27 27
         })();
28 28
         break;
29 29