
Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag storeI understand your frustration about not getting visibility into Support Studio issues. Unfortunately, the Support Studio is an internal tool used by the Sanity team for managing support requests, and there isn't currently a public-facing way to check issue status, priority, or get automated updates on tickets you've submitted there.
This is a common pain point in the community. When you submit something through Support Studio, it's essentially a one-way submission unless the support team responds directly. There's no ticket tracking system exposed to users like you'd find with traditional support platforms.
For questions like your Sentry integration issue, you're likely to get better community engagement through:
For your specific question about crash reporting in Sanity Studio: Yes, Sentry integration is definitely possible! Based on a discussion from the community, here's what worked for others:
For Sanity Studio v2 (the older version), the recommended approach was to:
schema.js filepart:@sanity/base/schema) comes first in the parts array of your sanity.json fileThis catches nearly all errors, particularly those related to plugin loading and custom components.
For Sanity Studio v3+ (current version), since the Studio is built on React, you can integrate Sentry just like any React application:
npm install @sentry/reactsanity.config.ts:import * as Sentry from "@sentry/react";
import { defineConfig } from "sanity";
Sentry.init({
dsn: "your-sentry-dsn",
integrations: [new Sentry.BrowserTracing()],
tracesSampleRate: 1.0,
});
export default defineConfig({
// your config
});The key is that Studio v3+ is a React application, so standard React error monitoring patterns work well. You might want to be selective about what you track to avoid noise from expected Studio behaviors.
If you want to share more details about your specific implementation challenges, the Discord community is much more active than the Support Studio for getting peer-to-peer help!
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