Skip to content

Commit

Permalink
Merge pull request #30 from osstotalsoft/feature/FixImports
Browse files Browse the repository at this point in the history
update imports
  • Loading branch information
DCosti authored May 30, 2023
2 parents bc5d551 + b5b2693 commit f0c1fbe
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/components/charts/Chart/Chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
Legend
} from 'chart.js'
import { ChartProps } from './types'
import { Card, CardColor } from 'components/surfaces/Card'
import { Card, CardColor } from '../../surfaces/Card'

ChartJS.register(CategoryScale, LinearScale, PointElement, LineElement, BarElement, Tooltip, Legend)

Expand Down
6 changes: 3 additions & 3 deletions src/components/charts/StatChart/StatsChartStyles.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import MuiCardContent from '@mui/material/CardContent'
import MuiCardActions from '@mui/material/CardActions'
import { styled } from '@mui/material/styles'
import { Card, CardHeader } from 'components/surfaces/Card'
import Typography from 'components/dataDisplay/Typography'
import { Gradient } from 'components'
import { Card, CardHeader } from '../../surfaces/Card'
import Typography from '../../dataDisplay/Typography'
import { Gradient } from '../../types'

export const StyledCard = styled(Card)(({ theme }) => ({
display: 'inline-block',
Expand Down
6 changes: 3 additions & 3 deletions src/components/feedback/Forbidden/Forbidden.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react'
import PropTypes from 'prop-types'
import Grid from '@mui/material/Grid'
import forbidden from '../../assets/img/forbidden.png'
import Typography from 'components/dataDisplay/Typography'
import Button from 'components/buttons/Button'
import forbidden from './forbidden.png'
import Typography from '../../dataDisplay/Typography'
import Button from '../../buttons/Button'
import { ForbiddenProps } from './types'

/**
Expand Down
File renamed without changes
2 changes: 1 addition & 1 deletion src/components/feedback/NotFound/NotFound.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import getTheme from 'components/themes'
import getTheme from '../../themes'
import NotFound from './NotFound'
import { render, screen } from 'testingUtils'

Expand Down
2 changes: 1 addition & 1 deletion src/components/feedback/NotFound/NotFound.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import PropTypes from 'prop-types'
import { NotFoundImage, NotFoundText } from './NotFoundStyles'
import notFound from '../../assets/img/notFound.png'
import notFound from './notFound.png'
import Grid from '@mui/material/Grid'
import { NotFoundProps } from './types'

Expand Down
File renamed without changes
2 changes: 1 addition & 1 deletion src/components/navigation/SideMenu/SideMenuStyles.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Theme } from '@mui/material'
import { styled } from '@mui/material/styles'
import IconButton from 'components/buttons/IconButton'
import IconButton from '../../buttons/IconButton'

export const SideMenuWrapper = styled('div')(() => ({
position: 'fixed',
Expand Down

0 comments on commit f0c1fbe

Please sign in to comment.