diff --git a/src/editor/secret-length-tooltip.js b/src/editor/secret-length-tooltip.js index ad8444f3..5a2c2293 100644 --- a/src/editor/secret-length-tooltip.js +++ b/src/editor/secret-length-tooltip.js @@ -23,7 +23,9 @@ export function minSecretLengthCheck(event) { console.log(utf8tohex(secretInput.value)); if(inputBits < algBits) { - secretInput._tippy.show(); + if(!secretInput._tippy.state.visible) { + secretInput._tippy.show(); + } } else { secretInput._tippy.hide(); }