Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 543x 543x 543x 543x 543x 543x 543x 543x 543x 543x 543x 543x 543x | export const DEFAULT_ICON_SIZE = 18; export const blockedAndQuarantinedtnx = `(transactionIsBlocked:!true%2CtransactionIsFalsePositive:true%2C(transactionIsBlocked:true%3BtransactionProcessingState:"settled"))%3BtransactionIsQuarantined:!true`; export const encodedBlockedAndQuarantinedFilter = `(isBlocked:!true%2CisFalsePositive:true%2C(isBlocked:true%3BprocessingState:"settled"))%3BisQuarantined:!true`; export const blockedAndQuarantinedFilter = `(isBlocked:!true,isFalsePositive:true,(isBlocked:true;processingState:"settled"));isQuarantined:!true`; export const blockedUnsettledTnx = `(isBlocked:!true%2CisFalsePositive:true%2C(isBlocked:true;processingState:"settled"))`; export const PRE_APPROVAL_QUERY = `(lastInternalApprovalTypeDisplayName:"Pre-approval")`; export const AUTO_APPROVAL_QUERY = `(lastInternalApprovalTypeDisplayName:"Auto-approval")`; export const PRE_APPROVAL_QUERY_REFACTORED = `(approvalStateName:"pre_approval")`; export const AUTO_APPROVAL_QUERY_REFACTORED = `(approvalStateName:"auto_approval")`; export const FILTER_VALUES_ARRAY = [ "", AUTO_APPROVAL_QUERY, PRE_APPROVAL_QUERY, ] as const; export const FILTER_VALUES_ARRAY_REFACTORED = [ "", AUTO_APPROVAL_QUERY_REFACTORED, PRE_APPROVAL_QUERY_REFACTORED, ] as const; export const BALANCE_MAINTENANCE_TOOLTIP_MESSAGE = "Balance is being updated due to scheduled maintenance. Your funds are safe and will be restored shortly."; export const CARD_CONTENT_HEIGHT = 80; |