From 69571209b3a256c30100839ba55de26b4c67999a Mon Sep 17 00:00:00 2001 From: Kaleb Barrett Date: Mon, 15 Jun 2026 07:32:10 -0400 Subject: [PATCH] Allow email field to be empty --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index a7f825d8b3..45420e9f68 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -70,7 +70,7 @@ export function parseDisplayNameEmail( ): DisplayNameEmail { // Parse the name and email address from a string in the following format // Display Name - const pattern = /^([^<]+)\s*<([^>]+)>$/i + const pattern = /^([^<]+)\s*<([^>]*)>$/i // Check we have a match const match = displayNameEmail.match(pattern)