Skip to content

Commit 85cd08c

Browse files
committed
fix(consts): do not constrain profile name regex by length
1 parent ee49878 commit 85cd08c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/consts/src/consts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export const PROFILE_NAME = {
134134
MAX_LENGTH: 50,
135135

136136
// Regex to prohibit anything that could potentially form an URL or email address.
137-
REGEX: /^[^/.@><]{3,50}$/,
137+
REGEX: /^[^/.@><]*$/,
138138
};
139139

140140
/**

0 commit comments

Comments
 (0)