Skip to content

Commit

Permalink
Merge pull request #38590 from Expensify/georgia-cardSettingsUpdates
Browse files Browse the repository at this point in the history
[NO QA] Update `Card.ts`
  • Loading branch information
arosiclair authored Mar 19, 2024
2 parents a61613c + 02e9db2 commit 860cca6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/CONST.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1546,6 +1546,11 @@ const CONST = {
STATE_SUSPENDED: 7,
},
ACTIVE_STATES: cardActiveStates,
LIMIT_TYPES: {
SMART: 'smart',
MONTHLY: 'monthly',
FIXED: 'fixed',
},
},
AVATAR_ROW_SIZE: {
DEFAULT: 4,
Expand Down
3 changes: 3 additions & 0 deletions src/types/onyx/Card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ type Card = {
maskedPan?: string; // do not reference, removing as part of Expensify/App#27943
lastFourPAN?: string;
cardName: string;
cardTitle: string; // used only for virtual limit cards
limitType: ValueOf<typeof CONST.EXPENSIFY_CARD.LIMIT_TYPES>;
isAdminIssuedVirtualCard: boolean;
isVirtual: boolean;
fraud: ValueOf<typeof CONST.EXPENSIFY_CARD.FRAUD_TYPES>;
cardholderFirstName: string;
Expand Down

0 comments on commit 860cca6

Please sign in to comment.