From 8178f7cf8780965f0cd64587d22e1ba697ed4932 Mon Sep 17 00:00:00 2001 From: Alex Junior Date: Mon, 23 May 2022 13:37:56 -0300 Subject: [PATCH] [FIX] Applying same color to the time on replied messages (#4211) --- app/containers/message/Reply.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/containers/message/Reply.tsx b/app/containers/message/Reply.tsx index 65cf00aed..895d8aee3 100644 --- a/app/containers/message/Reply.tsx +++ b/app/containers/message/Reply.tsx @@ -100,7 +100,7 @@ const Title = React.memo( {attachment.author_name ? ( {attachment.author_name} ) : null} - {time ? {time} : null} + {time ? {time} : null} {attachment.title ? {attachment.title} : null} );