INFRA-2867 | relax navi email regex

This commit is contained in:
dhruvjoshi
2024-03-13 21:27:54 +05:30
parent 3daa576ee1
commit f932167842

View File

@@ -26,7 +26,7 @@ export const MAKE_MANAGER = (teamId: string, userId: string): string => {
export const regularExpression = /^[a-zA-Z][a-zA-Z0-9_ -]{1,48}[a-zA-Z0-9]$/;
export const validEmail = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
export const emailRegularExpression = /^[a-zA-Z.]+@navi\.com$/;
export const emailRegularExpression = /^[a-zA-Z0-9._+-]+@navi\.com$/;
export const DEFAULT_SEVERITY = {
label: 'Sev-3',
value: '4',