From 2c5e8b896e876380d0fc046eb7054e7f0a765ec1 Mon Sep 17 00:00:00 2001 From: Artyom Keydunov Date: Fri, 22 May 2026 09:58:03 -0700 Subject: [PATCH] docs: drop description from view group example Removes `description` from the view group example in the docs since it is not part of the documented parameter set. Keeps the example minimal with `name` and `title` only. Co-authored-by: Cursor --- docs-mintlify/docs/data-modeling/view-groups.mdx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs-mintlify/docs/data-modeling/view-groups.mdx b/docs-mintlify/docs/data-modeling/view-groups.mdx index bc7cde9bf5626..8e7aaa46a5b2d 100644 --- a/docs-mintlify/docs/data-modeling/view-groups.mdx +++ b/docs-mintlify/docs/data-modeling/view-groups.mdx @@ -19,8 +19,8 @@ parameters and configuration options. ## Defining a view group A view group is a top-level entity, defined alongside views. At minimum it -needs a `name`; `title` and `description` make it easier to navigate in -downstream tools. +needs a `name`; adding a `title` makes it easier to navigate in downstream +tools. @@ -28,13 +28,11 @@ downstream tools. view_groups: - name: sales title: Sales - description: Revenue and order views for the sales team ``` ```javascript title="JavaScript" view_group(`sales`, { - title: `Sales`, - description: `Revenue and order views for the sales team` + title: `Sales` }) ```