Skip to content

Commit f699761

Browse files
authored
Merge pull request #4321 from anyproto/ios-5547-remove-sent-checkmark-in-chat-messages
IOS-5547 Remove sent checkmark in chat messages
2 parents 109be4b + 2983e45 commit f699761

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Anytype/Sources/PresentationLayer/Modules/Chat/Subviews/Message/MessageBottomInfoView.swift

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,13 @@ private struct MessageBottomInfoViewBuilder {
3535
}
3636

3737
private var syncIndicatorText: Text {
38-
Text(Image(asset: synced ? .MessageStatus.synced : .MessageStatus.loading))
39-
.baselineOffset(-2)
40-
+ Text(" ")
38+
if synced {
39+
Text("")
40+
} else {
41+
Text(Image(asset: .MessageStatus.loading))
42+
.baselineOffset(-2)
43+
+ Text(" ")
44+
}
4145
}
4246
}
4347

0 commit comments

Comments
 (0)