aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-23 10:56:56 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-23 10:56:56 +0800
commit9363903ed04a7cf5cca7c87f18a6a3fc4732d670 (patch)
treed5316b20c4fccf1bf7dc7a88f2ab7f938cf2f07a
parentNo cookie without consent (diff)
downloadpowxy-9363903ed04a7cf5cca7c87f18a6a3fc4732d670.tar.gz
powxy-9363903ed04a7cf5cca7c87f18a6a3fc4732d670.tar.zst
powxy-9363903ed04a7cf5cca7c87f18a6a3fc4732d670.zip
Don't tell the user to press submit when solution found
See last commit, we don't want to 'compel' them
-rw-r--r--tmpl.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmpl.go b/tmpl.go
index 36381fd..65dc79e 100644
--- a/tmpl.go
+++ b/tmpl.go
@@ -84,7 +84,7 @@ document.addEventListener("DOMContentLoaded", function() {
let nonce_str = String.fromCharCode(...new Uint8Array(buf));
field.value = btoa(nonce_str);
- status_el.textContent = "Solution found. Please press the submit button.";
+ status_el.textContent = "Solution found.";
return;
}