Skip to content

Commit 91f6799

Browse files
committed
fixes lint
1 parent eba3248 commit 91f6799

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

packages/xforms-engine/src/lib/reactivity/createInstanceValueState.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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
244244
const 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 = (
256256
const 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

Comments
 (0)