From 84dbcb0f6914979285356c7576cf1162974ef410 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Fri, 17 Jan 2025 11:51:48 +0100 Subject: [PATCH] Change errorState to boolean --- packages/client/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/index.ts b/packages/client/src/index.ts index 97c0525f55..80ac725df3 100644 --- a/packages/client/src/index.ts +++ b/packages/client/src/index.ts @@ -17,7 +17,7 @@ export interface SDK { export type Component = Writable<{ id: string styles: any - errorState: string + errorState: boolean }> export type Context = Readable