From 7ab1fe4cdda2e8225f2cac409c112ff74f4f7d7c Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Thu, 25 Jun 2026 12:38:18 -0500 Subject: [PATCH] fix: PIN copy revert timeout changed to 5 seconds --- .../com_mokosuiteclient/admin/src/Helper/SupportPinHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/packages/com_mokosuiteclient/admin/src/Helper/SupportPinHelper.php b/source/packages/com_mokosuiteclient/admin/src/Helper/SupportPinHelper.php index d0f8a2db..8119c97d 100644 --- a/source/packages/com_mokosuiteclient/admin/src/Helper/SupportPinHelper.php +++ b/source/packages/com_mokosuiteclient/admin/src/Helper/SupportPinHelper.php @@ -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); } }); }