mirror of
https://github.com/jambonz/jambonz-webapp.git
synced 2026-07-04 19:21:58 +00:00
Correct misspelled words
This commit is contained in:
@@ -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 — I'l complete later
|
||||
Skip for now — I'll complete later
|
||||
</Link>
|
||||
)}
|
||||
</Form>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user