Disabling beta features and reporting a bug in the latest version of the studio.
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:
- Restart your Studio development server
- 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.
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.