From 9363903ed04a7cf5cca7c87f18a6a3fc4732d670 Mon Sep 17 00:00:00 2001
From: Runxi Yu <me@runxiyu.org>
Date: Sun, 23 Mar 2025 10:56:56 +0800
Subject: Don't tell the user to press submit when solution found

See last commit, we don't want to 'compel' them
---
 tmpl.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
 			}
 
-- 
cgit v1.2.3