Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
Merge branch 'presign/base' into presign/enhanced-transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
anxolin committed Sep 23, 2021
2 parents d328dfe + 0522c24 commit 20ca92a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/custom/components/Web3Status/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ const Wrapper = styled.div`
}
`

const isPending = (data: TransactionAndOrder) => data.status === OrderStatus.PENDING
const isPending = (data: TransactionAndOrder) =>
data.status === OrderStatus.PENDING || data.status === OrderStatus.PRESIGNATURE_PENDING

const isConfirmed = (data: TransactionAndOrder) =>
data.status === OrderStatus.FULFILLED || data.status === OrderStatus.EXPIRED || data.status === OrderStatus.CANCELLED

Expand Down

0 comments on commit 20ca92a

Please sign in to comment.