Skip to content

Commit

Permalink
fix: fix e2e import and export errors
Browse files Browse the repository at this point in the history
  • Loading branch information
zatkiller committed Nov 2, 2021
1 parent 623f6ac commit 8960310
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/models/form.server.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import {
StorageFormSettings,
} from '../../../shared/types'
import { reorder } from '../../../shared/utils/immutable-array-fns'
import { getApplicableIfStates } from '../../shared/util/logic'
import { getApplicableIfStates } from '../../../shared/utils/logic'
import {
FormLogicSchema,
FormOtpData,
Expand Down
5 changes: 3 additions & 2 deletions src/app/utils/logic-adaptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ import { ok, Result } from 'neverthrow'
import { FormDto } from '../../../shared/types'
import { PreventSubmitLogic } from '../../../shared/types/form/form_logic'
import {
FieldIdSet,
getLogicUnitPreventingSubmit as logicGetLogicUnitPreventingSubmit,
getVisibleFieldIds as logicGetVisibleFieldIds,
} from '../../../shared/utils/logic'
import { FieldResponse, IFormDocument } from '../../types'
import { ProcessingError } from '../modules/submission/submission.errors'

export { FieldIdSet } from '../../shared/util/logic'
import { FieldIdSet } from './../../../shared/types/logic'

export { FieldIdSet } from './../../../shared/types/logic'

export const getVisibleFieldIds = (
submission: FieldResponse[],
Expand Down

0 comments on commit 8960310

Please sign in to comment.