1
1
import FilterParameters from '@components/AppSettings/FilterParameters'
2
2
import GeneralSettings from '@components/AppSettings/GeneralSettings'
3
3
import OscSettings from '@components/AppSettings/OscSettings'
4
- import TrackingAlghoritmSettings from '@components/AppSettings/TrackingAlghoritmSettings '
4
+ import TrackingAlgorithmSettings from '@components/AppSettings/TrackingAlgorithmSettings '
5
5
import { RANGE_INPUT_FORMAT_APP_SETTINGS } from '@src/static/types/enums'
6
6
7
7
export interface IProps {
@@ -14,7 +14,7 @@ export interface IProps {
14
14
onChange : ( format : string , value : number ) => void
15
15
onChangeAddress : ( value : string ) => void
16
16
onChangeOSCPort : ( value : string ) => void
17
- onChangeOSCReciverPort : ( value : string ) => void
17
+ onChangeOSCReceiverPort : ( value : string ) => void
18
18
onChangeOSCRecenterPort : ( value : string ) => void
19
19
onChangeOSCRecalibrateAddress : ( value : string ) => void
20
20
}
@@ -42,7 +42,7 @@ const AppSettings = (props: IProps) => {
42
42
/>
43
43
</ div >
44
44
< div class = "w-full flex justify-center align-center flex-col pb-12" >
45
- < TrackingAlghoritmSettings onClick = { ( ) => props . onClickBlobFallback ( ) } />
45
+ < TrackingAlgorithmSettings onClick = { ( ) => props . onClickBlobFallback ( ) } />
46
46
</ div >
47
47
< div class = "w-full pb-12" >
48
48
< FilterParameters
@@ -59,8 +59,8 @@ const AppSettings = (props: IProps) => {
59
59
onChangeOSCPort = { ( value ) => {
60
60
props . onChangeOSCPort ( value )
61
61
} }
62
- onChangeOSCReciverPort = { ( value ) => {
63
- props . onChangeOSCReciverPort ( value )
62
+ onChangeOSCReceiverPort = { ( value ) => {
63
+ props . onChangeOSCReceiverPort ( value )
64
64
} }
65
65
onChangeOSCRecenterPort = { ( value ) => {
66
66
props . onChangeOSCRecenterPort ( value )
0 commit comments