fix: PIN copy revert timeout changed to 5 seconds
Universal: Auto Version Bump / Version Bump (push) Successful in 11s
Universal: Pre-Release / Build Pre-Release (${{ inputs.stability || github.ref_name }}) (push) Successful in 22s

This commit is contained in:
2026-06-25 12:38:18 -05:00
parent 21bdd9a8a2
commit 7ab1fe4cdd
@@ -198,7 +198,7 @@ class SupportPinHelper
navigator.clipboard.writeText(pin).then(function() {
if (textEl) {
textEl.textContent = 'Copied!';
setTimeout(function() { textEl.textContent = pin; }, 30000);
setTimeout(function() { textEl.textContent = pin; }, 5000);
}
});
}