
Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag storeYou 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:
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
}
}
})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
}
})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
}
})The duplicate tasks menu you're seeing is likely a bug in version 3.35.2. After disabling these features:
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 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.
Content operations
Content backend


The only platform powering content operations
By Industry


Tecovas strengthens their customer connections
Build and Share

Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag store