From 7ef4f8745993271aeea86a105904626d7d1d963c Mon Sep 17 00:00:00 2001 From: Sasha Chabin Date: Sun, 16 Jun 2024 20:42:17 +0500 Subject: [PATCH] Set aside prop as optional --- client/components/Articles/Article/Article.types.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/Articles/Article/Article.types.tsx b/client/components/Articles/Article/Article.types.tsx index 80464b0..a7b0c88 100644 --- a/client/components/Articles/Article/Article.types.tsx +++ b/client/components/Articles/Article/Article.types.tsx @@ -3,6 +3,6 @@ import { ReactElement } from "react"; export type ArticleProps = { title?: string; description: string; - aside: ReactElement; + aside?: ReactElement; external?: boolean };