diff --git a/pkgs/clan-cli/clan_cli/webui/routers/root.py b/pkgs/clan-cli/clan_cli/webui/routers/root.py index 550c6851a..07a2e811f 100644 --- a/pkgs/clan-cli/clan_cli/webui/routers/root.py +++ b/pkgs/clan-cli/clan_cli/webui/routers/root.py @@ -13,7 +13,7 @@ router = APIRouter() log = logging.getLogger(__name__) -@router.get("/{path_name:path}", tags=[Tags.root]) +@router.get("/{path_name:path}", include_in_schema=False) async def root(path_name: str) -> Response: if path_name == "": path_name = "index.html" diff --git a/pkgs/clan-cli/clan_cli/webui/tags.py b/pkgs/clan-cli/clan_cli/webui/tags.py index 0ecda5a74..b707529a4 100644 --- a/pkgs/clan-cli/clan_cli/webui/tags.py +++ b/pkgs/clan-cli/clan_cli/webui/tags.py @@ -33,9 +33,5 @@ tags_metadata: List[Dict[str, Any]] = [ { "name": str(Tags.modules), "description": "Manage cLAN modules of a flake", - }, - { - "name": str(Tags.root), - "description": "This serves as the frontend delivery", - }, + } ]