Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e5f1fc0
Merge branch 'master' into PLAT-754_tools-config
brooketopcoder Mar 11, 2022
ddad763
PLAT-754 #comment remove commented out tests #time 5m
brooketopcoder Mar 11, 2022
0687f21
PLAT-802 #comment create profile util;
brooketopcoder Mar 11, 2022
9d38a6c
PLAT-825 #comment fix profile styling;
brooketopcoder Mar 14, 2022
20411b1
Merge branch 'PLAT-802_profile-util' into PLAT-825_form-text-fields
brooketopcoder Mar 14, 2022
6373d82
PLAT-825 #comment consolidate font styles; #time 1h
brooketopcoder Mar 14, 2022
3beac2d
PLAT-828 #comment create button component;
brooketopcoder Mar 14, 2022
9d0dc29
PLAT-825 Form Text Fields & Profile - PLAT-802_profile-util (#46)
brooketopcoder Mar 15, 2022
63b1c87
PLAT-828 #comment use axios for xhr;
brooketopcoder Mar 15, 2022
353f0d4
PLAT-828 #comment rename all services to
brooketopcoder Mar 15, 2022
2738b0e
PLAT-828 #comment add update password functions
brooketopcoder Mar 15, 2022
40f51dd
Merge branch 'PLAT-802_profile-util' into PLAT-828_profile-api
brooketopcoder Mar 15, 2022
a5288a7
PLAT-828 #comment clean-up #time 5m
brooketopcoder Mar 15, 2022
da90fd6
PLAT-828 #comment clean-up #time 10m
brooketopcoder Mar 16, 2022
322f729
PLAT-828 #comment use v3 api for pw change
brooketopcoder Mar 16, 2022
3d1e645
PLAT-828 profile api to PLAT-802_profile-util (#50)
brooketopcoder Mar 16, 2022
29b6408
Merge branch 'PLAT-802_profile-util' into PLAT-826_validation
brooketopcoder Mar 16, 2022
cd5d848
PLAT-826 #comment reset pw fields upon submission
brooketopcoder Mar 16, 2022
07a211a
PLAT-826 #comment permit buttons
brooketopcoder Mar 16, 2022
dce60af
PLAT-826 #comment support for fields
brooketopcoder Mar 16, 2022
4e36e0a
PLAT-826 #comment clean-up #time 10m
brooketopcoder Mar 16, 2022
71a7cec
PLAT-826 #comment clean-up #time 5m
brooketopcoder Mar 16, 2022
b2a1f53
PLAT-826 #comment merge dev #time 10m
brooketopcoder Mar 16, 2022
da04ba1
Merge branch 'dev' into PLAT-826_temp-dev
brooketopcoder Mar 16, 2022
e68fa91
PLAT-826 #comment fix eslint #time 5m
brooketopcoder Mar 16, 2022
af7a753
Merge branch 'dev' into PLAT-826_temp-dev
brooketopcoder Mar 16, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@
"extends": [
"react-app",
"react-app/jest"
]
],
"rules": {
"no-useless-escape": 0
}
},
"browserslist": {
"production": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { getFormInput } from '../form-functions'

export function email(value: string | undefined): string | undefined {

// tslint:disable-next-line: no-useless-escape
const emailRegex: RegExp = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/

// if there is no value, do not set the error
Expand Down