From 00b63b02bd8c98e075b53cd39df193f134a16b9a Mon Sep 17 00:00:00 2001 From: ReaJason Date: Wed, 3 Dec 2025 02:35:28 +0800 Subject: [PATCH] fix(ui): hide urlPatternField for customizer --- web/src/lib/utils.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/lib/utils.ts b/web/src/lib/utils.ts index 923f8965..41b91379 100644 --- a/web/src/lib/utils.ts +++ b/web/src/lib/utils.ts @@ -79,6 +79,7 @@ export function shouldHidden(shellType: string | undefined) { shellType.startsWith("Agent") || shellType.endsWith("Interceptor") || shellType.endsWith("Handler") || - shellType.endsWith("WebFilter") + shellType.endsWith("WebFilter") || + shellType === "Customizer" ); }