Skip to content

Commit 380f23f

Browse files
authored
Merge pull request #791 from Adamant-im/ui/send-messages-faster
UI: Send messages faster
2 parents 36e1a61 + 5254c1f commit 380f23f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/constants/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,11 @@ export const TransactionAdditionalStatus = {
167167
}
168168

169169
export const tsIcon = function (status: TransactionStatusType) {
170-
if (status === TransactionStatus.CONFIRMED) {
170+
if (status === TransactionStatus.CONFIRMED || status === TransactionStatus.REGISTERED) {
171171
return mdiCheck
172172
}
173173

174-
if (status === TransactionStatus.PENDING || status === TransactionStatus.REGISTERED) {
174+
if (status === TransactionStatus.PENDING) {
175175
return mdiClockOutline
176176
}
177177

0 commit comments

Comments
 (0)