From 1ab9b120985f78819f1239fa5fb9a149e0d463ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20Poduszl=C3=B3?= <14854048+kripod@users.noreply.github.com> Date: Mon, 11 Dec 2023 00:34:29 +0100 Subject: [PATCH] fix(Alert): constraining children --- src/components/Alert.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Alert.tsx b/src/components/Alert.tsx index 83ed7bf..373cd94 100644 --- a/src/components/Alert.tsx +++ b/src/components/Alert.tsx @@ -8,10 +8,10 @@ export function Alert({ children }: AlertProps) { return (
- - {children} + +
{children}
); }