From e4206d6277769603eb71ad7d73de200c942bed33 Mon Sep 17 00:00:00 2001 From: jahooma Date: Sat, 8 Jan 2022 23:09:19 -0600 Subject: [PATCH] Add an extra new line when you add to a market description --- web/components/contract-feed.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/contract-feed.tsx b/web/components/contract-feed.tsx index b5cfca3d..c44f58ef 100644 --- a/web/components/contract-feed.tsx +++ b/web/components/contract-feed.tsx @@ -137,7 +137,7 @@ export function ContractDescription(props: { e.preventDefault() setEditing(false) - const newDescription = `${contract.description}\n${description}`.trim() + const newDescription = `${contract.description}\n\n${description}`.trim() await updateContract(contract.id, { description: newDescription }) setDescription(editStatement())