
Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag storeYou're right that spellchecking should work in the Portable Text Editor - and it does support it! The issue you're experiencing in Sanity Studio v2.27 is likely because spellcheck needs to be explicitly enabled in your schema configuration.
The Portable Text Editor does support spellchecking through the spellCheck option on the block type. While this option defaults to true, there have been cases in Studio v2 where it needs to be explicitly set to work properly.
Here's how to fix it - add the spellCheck option to your block type's options object:
{
title: 'Content',
name: 'content',
type: 'array',
of: [
{
type: 'block',
options: {
spellCheck: true
}
}
]
}The key is placing spellCheck: true inside the options object at the block type level. This is a Boolean option that explicitly enables spellchecking in the Portable Text Editor.
After updating your schema with this configuration, restart your Studio development server. The spellcheck functionality should then work in your Portable Text fields just like it does in your regular text fields.
If you're still experiencing issues after adding this, double-check that:
options objectThis should resolve the spellcheck issue you're seeing in Studio v2.27's Portable Text Editor.
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