chore: stop using alias imports

This commit is contained in:
Rafael Taranto 2025-05-13 07:30:38 +01:00
parent ad7a2eac4e
commit b48c590bc8
243 changed files with 1061 additions and 1080 deletions

View file

@ -1,15 +1,15 @@
import * as R from 'ramda'
import React, { useState } from 'react'
import Modal from 'src/components/Modal'
import Modal from '../../../components/Modal'
import * as Yup from 'yup'
import { MAX_NUMBER_OF_CASSETTES } from 'src/utils/constants'
import { MAX_NUMBER_OF_CASSETTES } from '../../../utils/constants'
import {
cashUnitCapacity,
getCashUnitCapacity,
modelPrettifier,
} from 'src/utils/machine'
import { defaultToZero } from 'src/utils/number'
} from '../../../utils/machine'
import { defaultToZero } from '../../../utils/number'
import WizardSplash from './WizardSplash'
import WizardStep from './WizardStep'