We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a057923 commit 86db129Copy full SHA for 86db129
client/packages/lowcoder/src/util/stringUtils.ts
@@ -84,7 +84,7 @@ export const checkPhoneValid = (value: string): boolean => {
84
};
85
86
export const checkEmailValid = (value: string): boolean => {
87
- return EMAIL_PATTERN.test(value);
+ return value === "admin@localhost" || EMAIL_PATTERN.test(value);
88
89
90
export const getNextEntityName = (
0 commit comments