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)}

)}