fix(ui): hide urlPatternField for customizer

This commit is contained in:
ReaJason
2025-12-08 01:43:41 +08:00
parent 2582a12785
commit 13a83d510b
+2 -1
View File
@@ -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"
);
}