Joint session with Vercel: How to build intelligent storefronts (May 15th) →

Can't select uploaded images in Sanity, no errors shown

2 repliesLast updated: Nov 29, 2025

And I have another error, I can no longer select images. They are inserted when I upload them, but when I want to select one, nothing happens and I get no error in the UI or in the console.
AI Update

It sounds like you're experiencing an issue where you can upload images successfully, but when you try to select existing images from the asset library, nothing happens. This is a frustrating problem, especially when there are no error messages to guide you.

Based on similar issues in the Sanity community, here are the most common causes and solutions:

Check your metadata configuration

The most common cause of image-related issues in Sanity Studio is invalid metadata configuration. According to this resolved issue, certain metadata values can cause problems.

In your image field schema, check if you have a metadata array in the options. Remove dimensions, hasAlpha, and isOpaque if they're present, as these are not valid metadata options and can cause the image picker to fail silently. The valid metadata options are:

Your image field should look like this:

{
  name: 'myImage',
  type: 'image',
  options: {
    metadata: [
      'blurhash',
      'lqip', 
      'palette',
      'exif'
    ]
  }
}

Other troubleshooting steps

If none of these solve the issue, it would be helpful to share your complete image field schema and any custom components you might be using. You can also get real-time help in the Sanity Community Slack where the team and community members can help debug further!

Show original thread
2 replies

Was this answer helpful?

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.

Related contributions