diff --git a/src/types/onyx/Card.ts b/src/types/onyx/Card.ts index 01c7772bd86f..1efa5906360e 100644 --- a/src/types/onyx/Card.ts +++ b/src/types/onyx/Card.ts @@ -1,16 +1,11 @@ import {ValueOf} from 'type-fest'; import CONST from '../../CONST'; -type State = -3 /* OPEN */ | -4 /* NOT_ACTIVATED */ | -5 /* STATE_DEACTIVATED */ | -6 /* CLOSED */ | -7 /* STATE_SUSPENDED */; +type State = 3 /* OPEN */ | 4 /* NOT_ACTIVATED */ | 5 /* STATE_DEACTIVATED */ | 6 /* CLOSED */ | 7 /* STATE_SUSPENDED */; type Card = { cardID: number; - state: State, + state: State; bank: string; availableSpend: number; domainName: string;