From 2708a010bf39ce6899e6c17ee9480cd4abfd76e7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Mar 2026 18:19:46 +0000 Subject: [PATCH] fix: show accurate dot count for masked Apprise URL in wizard Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- frontend/src/components/NotificationWizard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/NotificationWizard.tsx b/frontend/src/components/NotificationWizard.tsx index 8bdf193..749e31b 100644 --- a/frontend/src/components/NotificationWizard.tsx +++ b/frontend/src/components/NotificationWizard.tsx @@ -334,7 +334,7 @@ export function NotificationWizard({ onComplete, onCancel, initialData }: Notifi showUrl ? 'text-gray-800' : 'text-gray-400 select-none' }`} > - {showUrl ? effectiveUrl : '•'.repeat(Math.min(effectiveUrl.length, 48))} + {showUrl ? effectiveUrl : '•'.repeat(effectiveUrl.length)}

)}