Browse Source

CHORE | Allow use dot in login

stage
Vitalik 5 months ago
parent
commit
c1127129c6
  1. 2
      src/shared/consts/index.ts

2
src/shared/consts/index.ts

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
export const letterNumber = /^[0-9a-zA-Z]+$/;
export const emailPattern = /\S+@\S+\.\S+/;
export const loginPattern = /^[0-9a-zA-Z]+$/;
export const loginPattern = /^[0-9a-zA-Z.-]+$/;
export const MIN_PHONE_LENGTH = 12;
export const NETWORK_ERROR = "Network Error";
export const BYTES_IN_MEGABYTE = 1000000;

Loading…
Cancel
Save