Skip to content

Commit

Permalink
style: removed time tag from first message
Browse files Browse the repository at this point in the history
  • Loading branch information
Vali-98 committed Feb 24, 2024
1 parent c13e335 commit 9ad20c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ChatMenu/ChatWindow/ChatFrame.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const ChatFrame: React.FC<ChatFrameProps> = ({
source={imageSource}
/>
<Text style={styles.graytext}>#{id}</Text>
{deltaTime !== undefined && !message.is_user && (
{deltaTime !== undefined && !message.is_user && id !== 0 && (
<Text style={styles.graytext}>{deltaTime}s</Text>
)}
{TTSenabled && <TTSMenu message={message.mes} isLast={isLast} />}
Expand Down

0 comments on commit 9ad20c5

Please sign in to comment.