Correct misspelled words

This commit is contained in:
user
2020-05-28 16:29:22 -07:00
parent 9976277c6b
commit 9c35dca4fe
3 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -189,7 +189,7 @@ const AccountForm = props => {
// eslint-disable-next-line
}, []);
const handleSumit = async (e) => {
const handleSubmit = async (e) => {
let isMounted = true;
try {
setShowLoader(true);
@@ -348,7 +348,7 @@ const AccountForm = props => {
: <Form
large
wideLabel={props.type === 'edit'}
onSubmit={handleSumit}
onSubmit={handleSubmit}
>
{(props.type === 'add' || props.type === 'edit') && (
<React.Fragment>
@@ -522,7 +522,7 @@ const AccountForm = props => {
right
to="/create-application"
>
Skip for now &mdash; I'l complete later
Skip for now &mdash; I'll complete later
</Link>
)}
</Form>
+2 -2
View File
@@ -215,7 +215,7 @@ const ApplicationForm = props => {
}, []);
const handleSumit = async (e) => {
const handleSubmit = async (e) => {
let isMounted = true;
try {
setShowLoader(true);
@@ -394,7 +394,7 @@ const ApplicationForm = props => {
? <Loader height={props.type === 'setup' ? '505px' : '630px'}/>
: <Form
large
onSubmit={handleSumit}
onSubmit={handleSubmit}
>
{(props.type === 'add' || props.type === 'edit') && (
<React.Fragment>
+2 -2
View File
@@ -211,7 +211,7 @@ const SipTrunkForm = props => {
setSipGateways(newSipGateways);
};
const handleSumit = async e => {
const handleSubmit = async e => {
let isMounted = true;
try {
setShowLoader(true);
@@ -538,7 +538,7 @@ const SipTrunkForm = props => {
? <Loader height={props.type === 'setup' ? '424px' : '376px'}/>
: <Form
large
onSubmit={handleSumit}
onSubmit={handleSubmit}
>
<Label htmlFor="name">Name</Label>
<Input