diff --git a/web/components/contract-overview.tsx b/web/components/contract-overview.tsx index 9ce07ecd..0ab43dd5 100644 --- a/web/components/contract-overview.tsx +++ b/web/components/contract-overview.tsx @@ -21,7 +21,7 @@ function ContractDescription(props: { }) { const { contract, isCreator } = props const [editing, setEditing] = useState(false) - const editStatement = () => `EDIT (${dayjs().format('MMM D, H:mma')}): ` + const editStatement = () => `${dayjs().format('MMM D, H:mma')}: ` const [description, setDescription] = useState(editStatement()) // Append the new description (after a newline) @@ -40,11 +40,19 @@ function ContractDescription(props: { {isCreator && !contract.resolution && (editing ? ( -
+ ))}