Skip to content

Commit

Permalink
eslint fix to test
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe Imperio authored and Felipe Imperio committed Oct 29, 2024
1 parent efe93a7 commit c9dc063
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const imitateValidate = (validator: IAnswerValidator, type: ConditionType) => {
break;
}
case 'LESS_THAN': {
result = validator.isLessThan(10);
result = validator.isLessThan(10);
break;
}
case 'INCLUDES_OPTION': {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
ConditionType,
Match,
Condition
Condition,
} from '@app/entities/activity/lib/types/conditionalLogic';

import {
Expand All @@ -12,7 +12,7 @@ import {
getEmptyRadioItem as getRadioItem,
getSliderItem,
getRadioResponse,
getStackedSliderItem,
getStackedSliderItem,
} from './testHelpers';
import { Answers } from '../../lib/hooks/useActivityStorageRecord';
import { PipelineItem } from '../../lib/types/payload';
Expand Down

0 comments on commit c9dc063

Please sign in to comment.