From b4d0af6eb2da7e6ca3f016aacf0b6698009ab43b Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Sun, 22 Mar 2026 18:55:46 +0200 Subject: [PATCH] client/modals: make the title optional --- apps/client/src/widgets/react/Modal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/react/Modal.tsx b/apps/client/src/widgets/react/Modal.tsx index e7a7c721f8..91bc690049 100644 --- a/apps/client/src/widgets/react/Modal.tsx +++ b/apps/client/src/widgets/react/Modal.tsx @@ -16,7 +16,7 @@ interface CustomTitleBarButton { export interface ModalProps { className: string; - title: string | ComponentChildren; + title?: string | ComponentChildren; customTitleBarButtons?: (CustomTitleBarButton | null)[]; size: "xl" | "lg" | "md" | "sm"; children: ComponentChildren;