Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix roblox username input
  • Loading branch information
regalijan committed Feb 28, 2024
1 parent 6f2d91f commit f9d080a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/routes/et-members.tsx
Expand Up @@ -300,10 +300,8 @@ export default function () {
if (
data.match(/\W/) ||
data.length > 20 ||
data.length < 4 ||
(data.match(/_/g)?.length || 0) > 1 ||
data.startsWith("_") ||
data.endsWith("_")
data.startsWith("_")
)
e.preventDefault();
}}
Expand Down

0 comments on commit f9d080a

Please sign in to comment.