Skip to content

Commit 5254c1f

Browse files
committed
UI: Send messages faster
1 parent caeaf27 commit 5254c1f

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)