From 6fb41a40ef507d446cf6bdfdd4ad479d5711a4cc Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 17 Jun 2023 23:43:16 -0700 Subject: [PATCH] Conditionally render description in TableField --- components/common/TableField/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/common/TableField/index.tsx b/components/common/TableField/index.tsx index 3b53aac9..b0d6bb1c 100644 --- a/components/common/TableField/index.tsx +++ b/components/common/TableField/index.tsx @@ -32,7 +32,7 @@ const TableField = (props: Props) => {

{props.label}

-

{props.description}

+ {props.description &&

{props.description}

}
{image()}