From a319016dbbd8efeee9e43d06e3a652d72fa8b049 Mon Sep 17 00:00:00 2001 From: Calum Muir Date: Sun, 7 Jun 2026 13:22:25 +0000 Subject: [PATCH] Fix invalid __experimental_actions on homePage schema MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 'unpublish' is not a valid action — valid values are create/update/delete/publish. Co-Authored-By: Claude Sonnet 4.6 --- studio/schemaTypes/homePageType.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/studio/schemaTypes/homePageType.ts b/studio/schemaTypes/homePageType.ts index de7d357..1e400c8 100644 --- a/studio/schemaTypes/homePageType.ts +++ b/studio/schemaTypes/homePageType.ts @@ -5,7 +5,7 @@ export const homePageType = defineType({ title: 'Home Page', type: 'document', // Singleton — only one document of this type should exist - __experimental_actions: ['update', 'publish', 'unpublish'], + __experimental_actions: ['update', 'publish'], fields: [ defineField({ name: 'heroHeadline',