Disable beta features (comments/tasks) in Sanity Studio 3.35.2

14 replies
Last updated: Dec 1, 2025
Hey team, we just updated our studio to the latest version (3.35.2) and I was wondering if we had any control on the beta features. For example, we could like to disable for now comments as well as the tasks as we're getting weird behaviour with it (see my screenshot showing duplicated tasks menu). Thanks.
AI Update

You absolutely have control over comments and tasks in Sanity Studio 3.35.2! Here's how to disable them in your sanity.config.ts or sanity.config.js file:

Disabling Comments

To disable comments, add this to your studio configuration:

// sanity.config.ts
import {defineConfig} from 'sanity'

export default defineConfig({
  // ... rest of your config
  document: {
    comments: {
      enabled: false
    }
  }
})

Disabling Tasks

To disable tasks, add this to your studio configuration:

// sanity.config.ts
import {defineConfig} from 'sanity'

export default defineConfig({
  // ... rest of your config
  tasks: {
    enabled: false
  }
})

Putting It Together

If you want to disable both features, your config would look like this:

// sanity.config.ts
import {defineConfig} from 'sanity'

export default defineConfig({
  // ... rest of your config
  document: {
    comments: {
      enabled: false
    }
  },
  tasks: {
    enabled: false
  }
})

About the Duplicated Tasks Menu Issue

The duplicate tasks menu you're seeing is likely a bug in version 3.35.2. After disabling these features:

  1. Restart your Studio development server
  2. If deployed, redeploy your Studio

Important note: Disabling comments hides them in the studio, but existing comments persist in the add-on comment dataset. The same applies to tasks. You can re-enable these features at any time by setting enabled: true or removing the configuration entirely (they're enabled by default for paid plans).

Both comments and tasks are available for all paid plans (Growth plan and above), and they're no longer in beta—they're fully supported features as of 2024.

Show original thread
14 replies

Sanity – Build the way you think, not the way your CMS thinks

Sanity is the developer-first content operating system that gives you complete control. Schema-as-code, GROQ queries, and real-time APIs mean no more workarounds or waiting for deployments. Free to start, scale as you grow.

Was this answer helpful?