diff --git a/app.py b/app.py
index c7558fd..8c01357 100644
--- a/app.py
+++ b/app.py
@@ -2597,7 +2597,7 @@ body{background:var(--bg);color:var(--txt);font-family:-apple-system,BlinkMacSys
@@ -3071,7 +3071,9 @@ function togglePwVis(inputId, btnId){
const inp=$(inputId), btn=$(btnId);
const show = inp.type==='password';
inp.type = show ? 'text' : 'password';
- btn.textContent = show ? '🙈' : '👁';
+ const eye='';
+ const eyeOff='';
+ btn.innerHTML = show ? eyeOff : eye;
}
async function connectWifi(){
diff --git a/version.txt b/version.txt
index 4ded4f9..1b5deea 100644
--- a/version.txt
+++ b/version.txt
@@ -1 +1 @@
-1.0.58
\ No newline at end of file
+1.0.59
\ No newline at end of file