Skip to content

Commit

Permalink
fix: removed material-ui imports in project
Browse files Browse the repository at this point in the history
  • Loading branch information
jv18creator committed Apr 26, 2023
1 parent aa4da4b commit e9c3d32
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions admin-ui/app/components/Notifications/styles.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { makeStyles } from "tss-react/mui";
// import { useTheme } from '@mui/material/styles';
import { makeStyles } from "tss-react/mui";

const styles = makeStyles()((theme) => ({
root: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState, useEffect, useContext } from 'react'
import MaterialTable from '@material-table/core'
import { Paper } from '@material-ui/core'
import { Paper } from '@mui/material'
import { useNavigate } from 'react-router-dom'
import { useSelector, useDispatch } from 'react-redux'
import { Card, CardBody } from 'Components'
Expand Down
6 changes: 3 additions & 3 deletions admin-ui/plugins/auth-server/components/AuthN/styles.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { makeStyles } from '@material-ui/core/styles'
import { makeStyles } from "tss-react/mui";

const styles = makeStyles(() => ({
const styles = makeStyles()(() => ({
link: {
color: '#1cb7ff',
textDecoration: 'underline',
fontWeight: 'bold'
},
}
}))

export default styles

0 comments on commit e9c3d32

Please sign in to comment.