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>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-26 18:19:46 +00:00
parent 5f24e7f1b6
commit 2708a010bf
@@ -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)}
</p>
</div>
)}