From 2b58f3be56150093a2681b1c8524466165d8ca6f Mon Sep 17 00:00:00 2001 From: "Jason M. Hasperhoven" Date: Mon, 4 Nov 2024 17:21:04 +0400 Subject: [PATCH] Remove string from type --- packages/ui/src/Toast/open.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/Toast/open.ts b/packages/ui/src/Toast/open.ts index 295586fe9..2de1cd6a2 100644 --- a/packages/ui/src/Toast/open.ts +++ b/packages/ui/src/Toast/open.ts @@ -16,7 +16,7 @@ const toastFnMap: Record = { export interface ToastProps { type: ToastType; message: string; - description?: string | ReactNode; + description?: ReactNode; persistent?: boolean; dismissible?: boolean; action?: ExternalToast['action'];