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,10 +1,10 @@
import { useQuery, gql } from '@apollo/client'
import * as R from 'ramda'
import React, { useState } from 'react'
import LogsDowloaderPopover from 'src/components/LogsDownloaderPopper.jsx'
import Title from 'src/components/Title.jsx'
import Sidebar from 'src/components/layout/Sidebar.jsx'
import { Info3, H4 } from 'src/components/typography/index.jsx'
import LogsDowloaderPopover from '../../components/LogsDownloaderPopper.jsx'
import Title from '../../components/Title.jsx'
import Sidebar from '../../components/layout/Sidebar.jsx'
import { Info3, H4 } from '../../components/typography/index.jsx'
import {
Table,
@ -13,8 +13,8 @@ import {
TableHeader,
TableBody,
TableCell,
} from 'src/components/table/index.js'
import { formatDate } from 'src/utils/timezones.js'
} from '../../components/table/index.js'
import { formatDate } from '../../utils/timezones.js'
import classes from './Logs.module.css'

View file

@ -1,12 +1,12 @@
import { useQuery, gql } from '@apollo/client'
import * as R from 'ramda'
import React, { useState, useRef } from 'react'
import LogsDowloaderPopover from 'src/components/LogsDownloaderPopper.jsx'
import Title from 'src/components/Title.jsx'
import Uptime from 'src/pages/Logs/Uptime.jsx'
import { Info3, H4 } from 'src/components/typography/index.jsx'
import LogsDowloaderPopover from '../../components/LogsDownloaderPopper.jsx'
import Title from '../../components/Title.jsx'
import Uptime from './Uptime.jsx'
import { Info3, H4 } from '../../components/typography/index.jsx'
import { Select } from 'src/components/inputs/index.js'
import { Select } from '../../components/inputs/index.js'
import {
Table,
TableHead,
@ -14,9 +14,9 @@ import {
TableHeader,
TableBody,
TableCell,
} from 'src/components/table/index.js'
import { startCase } from 'src/utils/string.js'
import { formatDate } from 'src/utils/timezones.js'
} from '../../components/table/index.js'
import { startCase } from '../../utils/string.js'
import { formatDate } from '../../utils/timezones.js'
import logsClasses from './Logs.module.css'
import classes from './ServerLogs.module.css'

View file

@ -2,8 +2,8 @@ import Chip from '@mui/material/Chip'
import * as R from 'ramda'
import React from 'react'
import { onlyFirstToUpper } from 'src/utils/string.js'
import { Label1 } from 'src/components/typography/index.jsx'
import { onlyFirstToUpper } from '../../utils/string.js'
import { Label1 } from '../../components/typography/index.jsx'
const Uptime = ({ process }) => {
const uptime = time => {