Skip to content

Commit

Permalink
contact history fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kurund committed Jan 9, 2022
1 parent e0972b8 commit f8b187b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const ContactHistory: React.FC<ContactHistoryProps> = ({ contactId }) =>
return (
<div className={styles.DetailBlock} key={key}>
<div className={styles.LineItem}>{label}</div>
<div className={styles.LineItemDate}>{moment(insertedAt).format('D/MM/YYYY')}</div>
<div className={styles.LineItemDate}>{moment(insertedAt).format('h:mma, D/MM/YYYY')}</div>
</div>
);
});
Expand Down

0 comments on commit f8b187b

Please sign in to comment.