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

@ -4,16 +4,16 @@ import Switch from '@mui/material/Switch'
import IconButton from '@mui/material/IconButton'
import * as R from 'ramda'
import React, { useState } from 'react'
import { HelpTooltip } from 'src/components/Tooltip'
import DataTable from 'src/components/tables/DataTable'
import { H4, P, Label3 } from 'src/components/typography'
import EditIcon from 'src/styling/icons/action/edit/enabled.svg?react'
import ExpandIconClosed from 'src/styling/icons/action/expand/closed.svg?react'
import ExpandIconOpen from 'src/styling/icons/action/expand/open.svg?react'
import WhiteLogo from 'src/styling/icons/menu/logo-white.svg?react'
import { HelpTooltip } from '../../../components/Tooltip'
import DataTable from '../../../components/tables/DataTable'
import { H4, P, Label3 } from '../../../components/typography'
import EditIcon from '../../../styling/icons/action/edit/enabled.svg?react'
import ExpandIconClosed from '../../../styling/icons/action/expand/closed.svg?react'
import ExpandIconOpen from '../../../styling/icons/action/expand/open.svg?react'
import WhiteLogo from '../../../styling/icons/menu/logo-white.svg?react'
import { SupportLinkButton } from 'src/components/buttons'
import { formatDate } from 'src/utils/timezones'
import { SupportLinkButton } from '../../../components/buttons'
import { formatDate } from '../../../utils/timezones'
import CustomSMSModal from './SMSNoticesModal'
import SvgIcon from '@mui/material/SvgIcon'

View file

@ -2,16 +2,16 @@ import Chip from '@mui/material/Chip'
import { Form, Formik, Field } from 'formik'
import * as R from 'ramda'
import React from 'react'
import ErrorMessage from 'src/components/ErrorMessage'
import Modal from 'src/components/Modal'
import { Info2 } from 'src/components/typography'
import DefaultIconReverse from 'src/styling/icons/button/retry/white.svg?react'
import DefaultIcon from 'src/styling/icons/button/retry/zodiac.svg?react'
import ErrorMessage from '../../../components/ErrorMessage'
import Modal from '../../../components/Modal'
import { Info2 } from '../../../components/typography'
import DefaultIconReverse from '../../../styling/icons/button/retry/white.svg?react'
import DefaultIcon from '../../../styling/icons/button/retry/zodiac.svg?react'
import * as Yup from 'yup'
import { ActionButton, Button } from 'src/components/buttons'
import { TextInput } from 'src/components/inputs/formik'
import { zircon } from 'src/styling/variables'
import { ActionButton, Button } from '../../../components/buttons'
import { TextInput } from '../../../components/inputs/formik'
import { zircon } from '../../../styling/variables'
const getErrorMsg = (formikErrors, formikTouched, mutationError) => {
if (!formikErrors || !formikTouched) return null