Skip to content

Commit

Permalink
Merge pull request #20527 from hoangzinh/df/20226
Browse files Browse the repository at this point in the history
Limit PayPal.me link to 20 chars max
  • Loading branch information
MariaHCD authored Jun 12, 2023
2 parents f6008bb + 306c5f6 commit 2d4af1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CONST.js
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,7 @@ const CONST = {
CARD_NUMBER: /^[0-9]{15,16}$/,
CARD_SECURITY_CODE: /^[0-9]{3,4}$/,
CARD_EXPIRATION_DATE: /^(0[1-9]|1[0-2])([^0-9])?([0-9]{4}|([0-9]{2}))$/,
PAYPAL_ME_USERNAME: /^[a-zA-Z0-9]+$/,
PAYPAL_ME_USERNAME: /^[a-zA-Z0-9]{1,20}$/,
ROOM_NAME: /^#[a-z0-9-]{1,80}$/,

// eslint-disable-next-line max-len, no-misleading-character-class
Expand Down

0 comments on commit 2d4af1c

Please sign in to comment.