From 5d13d035139c8dd9bf09dd3097d5931580f90676 Mon Sep 17 00:00:00 2001 From: pandeymangg Date: Mon, 9 Feb 2026 16:28:41 +0530 Subject: [PATCH] lint fix --- packages/types/common.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/types/common.ts b/packages/types/common.ts index 4aad1e28ea..9b2e08804e 100644 --- a/packages/types/common.ts +++ b/packages/types/common.ts @@ -19,7 +19,8 @@ export const ZStorageUrl = z.string().refine( } // Otherwise validate as URL try { - new URL(val); + // Using void to satisfy ESLint "no-new" rule while still validating the URL + void new URL(val); return true; } catch { return false;