Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
laks0407 committed Nov 13, 2024
1 parent c9706c6 commit a83bde5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/src/components/pages/ForgotPassword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ const ForgotPassword = (): React.ReactElement => {
const [userEmailId, setUserEmaild] = useState("");

const handleUserAuth = (userEmail: string) => {
const emailPattern =
/^[^\s@]+@(humanesociety\.org|uwblueprint\.org)$/;
const emailPattern = /^[^\s@]+@(humanesociety\.org|uwblueprint\.org)$/;
// added uwblueprint for test
const sentEmails: SentEmail[] = JSON.parse(
localStorage.getItem("sentEmails") || "[]",
Expand Down

0 comments on commit a83bde5

Please sign in to comment.