From 5b3ddc65511bccdcddb20134fbc979786350feb3 Mon Sep 17 00:00:00 2001 From: RitaDias Date: Mon, 14 Oct 2024 13:12:21 +0200 Subject: [PATCH] docs(sanity): update label onUncaughtError from internal to beta (#7612) ### Description Mistakenly a property in Source was tagged as internal when it should have been beta. This impacts the docs --- packages/sanity/src/core/config/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sanity/src/core/config/types.ts b/packages/sanity/src/core/config/types.ts index f8ef6d8ffdf..5903b68b763 100644 --- a/packages/sanity/src/core/config/types.ts +++ b/packages/sanity/src/core/config/types.ts @@ -786,7 +786,7 @@ export interface Source { */ beta?: BetaFeatures /** Configuration for error handling. - * @internal + * @beta */ onUncaughtError?: (error: Error, errorInfo: ErrorInfo) => void }