From d6608c822370ca7aad42c0ed54caf421ead8bb50 Mon Sep 17 00:00:00 2001 From: Dawid Rycerz Date: Tue, 22 Jul 2025 17:11:44 +0300 Subject: Update widget --- src/components/widgets/Steps2.astro | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/components/widgets/Steps2.astro') diff --git a/src/components/widgets/Steps2.astro b/src/components/widgets/Steps2.astro index 0891663..7a84282 100644 --- a/src/components/widgets/Steps2.astro +++ b/src/components/widgets/Steps2.astro @@ -23,7 +23,10 @@ const { function makeEmailsClickable(text: string | undefined): string { if (!text) return ''; const emailRegex = /([a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,})/g; - return text.replace(emailRegex, '$1'); + return text.replace( + emailRegex, + '$1' + ); } --- @@ -67,7 +70,10 @@ function makeEmailsClickable(text: string | undefined): string {

-

+

)) -- cgit v1.2.3