Skip to content
This repository has been archived by the owner on Oct 29, 2018. It is now read-only.

Commit

Permalink
Change paymentArrived-> credited for nodal status
Browse files Browse the repository at this point in the history
  • Loading branch information
notdrone committed Apr 13, 2018
1 parent ac8e2a5 commit bb3329c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/api/transaction-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export enum nodalStatusEnum {
initiates = 1,
authorized = 2,
failed = 3,
paymentArrived = 4,
credited = 4,
dispute = 5,
}

Expand Down
2 changes: 1 addition & 1 deletion src/helpers/color-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const getNodalTransactionColor = (status: nodalStatusEnum): string => {
switch (status) {
case nodalStatusEnum.notInitiated:
return graphite
case nodalStatusEnum.paymentArrived:
case nodalStatusEnum.credited:
return positiveGreen
case nodalStatusEnum.dispute:
case nodalStatusEnum.failed:
Expand Down

0 comments on commit bb3329c

Please sign in to comment.