diff --git a/web/src/types/schema.ts b/web/src/types/schema.ts index 63e095f7..ec5455b8 100644 --- a/web/src/types/schema.ts +++ b/web/src/types/schema.ts @@ -34,6 +34,9 @@ interface ValidationResult { } const urlPatternIsNeeded = (shellType: string) => { + if (shellType.startsWith("Agent")) { + return false; + } return ( shellType.endsWith("Servlet") || shellType.endsWith("ControllerHandler") ||