Skip to content

Commit

Permalink
fix: delayed status cell
Browse files Browse the repository at this point in the history
  • Loading branch information
dohaki committed Nov 28, 2023
1 parent 867123d commit d866325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DepositsTable/cells/StatusCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function PendingStatusCell({ width, deposit }: Props) {

return (
<StyledPendingStatusCell width={width}>
<Text color={isProfitable ? "light-200" : "yellow"}>
<Text color={isProfitable && !isDelayed ? "light-200" : "yellow"}>
{isDelayed ? "Delayed" : isProfitable ? "Processing..." : "Fee too low"}
</Text>
{isDelayed ? (
Expand Down

0 comments on commit d866325

Please sign in to comment.