@@ -205,7 +205,7 @@ const createValueChangedCalculation = (
205205 context : ValueContext ,
206206 setRelevantValue : SimpleAtomicStateSetter < string > ,
207207 action : ActionDefinition ,
208- resolvedActionValue ?: string ,
208+ resolvedActionValue ?: string
209209) : void => {
210210 const { source, ref } = bindToRepeatInstance ( context , action ) ;
211211 if ( ! source ) {
@@ -244,7 +244,7 @@ const setGeopointValue = (context: ValueContext, callback: (value: string) => vo
244244const performActionComputation = (
245245 context : ValueContext ,
246246 setValue : SimpleAtomicStateSetter < string > ,
247- action : ActionDefinition ,
247+ action : ActionDefinition
248248) => {
249249 if ( action . element . nodeName === SET_GEOPOINT_LOCAL_NAME ) {
250250 setGeopointValue ( context , ( point ) => setValue ( point ) ) ;
@@ -256,10 +256,12 @@ const performActionComputation = (
256256const performActionOnValueChange = (
257257 context : ValueContext ,
258258 setValue : SimpleAtomicStateSetter < string > ,
259- action : ActionDefinition ,
259+ action : ActionDefinition
260260) => {
261261 if ( action . element . nodeName === SET_GEOPOINT_LOCAL_NAME ) {
262- setGeopointValue ( context , ( point ) => createValueChangedCalculation ( context , setValue , action , point ) ) ;
262+ setGeopointValue ( context , ( point ) => {
263+ createValueChangedCalculation ( context , setValue , action , point ) ;
264+ } ) ;
263265 return ;
264266 }
265267 createValueChangedCalculation ( context , setValue , action ) ;
0 commit comments