fix: role change issue and role access

This commit is contained in:
sreehari jayaraj
2023-10-04 17:51:55 +00:00
parent 7557ee1a9b
commit 3ffdd7d47f
2 changed files with 2 additions and 1 deletions

View File

@@ -44,7 +44,7 @@ const insertOrUpdateString = (str: string) => {
const emailInputValidation = (input: string): boolean => {
if (!input.length) {
emailValidation.isError = true
emailValidation.message = 'Email Should Not Be Empty'
emailValidation.message = 'Email should not be empty'
return false
}
if (!validateEmail(input.trim())) {