Skip to content

Commit bc464d6

Browse files
committed
fixes
1 parent a639995 commit bc464d6

File tree

16 files changed

+31
-35
lines changed

16 files changed

+31
-35
lines changed

src/content/applications/Users/profile/MyCards.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ import {
1414
CardContent,
1515
Tooltip,
1616
IconButton,
17-
Avatar
17+
Avatar,
18+
styled
1819
} from '@mui/material';
19-
import { styled } from '@mui/material/styles';
2020
import DeleteTwoToneIcon from '@mui/icons-material/DeleteTwoTone';
2121
import AddTwoToneIcon from '@mui/icons-material/AddTwoTone';
2222

@@ -94,7 +94,7 @@ function MyCards() {
9494
setSelectedValue(event.target.value);
9595
};
9696

97-
const handleDelete = () => {};
97+
const handleDelete = () => { };
9898

9999
return (
100100
<Card>

src/content/applications/Users/profile/PopularTags.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import {
99
ListSubheader,
1010
ListItemText,
1111
Avatar,
12-
useTheme
12+
useTheme,
13+
styled
1314
} from '@mui/material';
14-
import { styled } from '@mui/material/styles';
1515

1616
const ListWrapper = styled(List)(
1717
() => `

src/content/applications/Users/profile/ProfileCover.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import {
77
Avatar,
88
CardMedia,
99
Button,
10-
IconButton
10+
IconButton,
11+
styled
1112
} from '@mui/material';
12-
import { styled } from '@mui/material/styles';
1313

1414
import ArrowBackTwoToneIcon from '@mui/icons-material/ArrowBackTwoTone';
1515
import ArrowForwardTwoToneIcon from '@mui/icons-material/ArrowForwardTwoTone';

src/content/applications/Users/profile/RecentActivity.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import {
55
CardHeader,
66
Divider,
77
Avatar,
8-
useTheme
8+
useTheme,
9+
styled
910
} from '@mui/material';
10-
import { styled } from '@mui/material/styles';
1111

1212
import ShoppingBagTwoToneIcon from '@mui/icons-material/ShoppingBagTwoTone';
1313
import FavoriteTwoToneIcon from '@mui/icons-material/FavoriteTwoTone';

src/content/applications/Users/settings/ActivityTab.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import {
99
IconButton,
1010
Button,
1111
CardActions,
12-
Link
12+
Link,
13+
styled
1314
} from '@mui/material';
14-
import { styled } from '@mui/material/styles';
1515

1616
import MoreHorizTwoToneIcon from '@mui/icons-material/MoreHorizTwoTone';
1717
import ThumbUpAltTwoToneIcon from '@mui/icons-material/ThumbUpAltTwoTone';

src/content/applications/Users/settings/SecurityTab.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ import {
2222
TablePagination,
2323
TableRow,
2424
TableContainer,
25-
useTheme
25+
useTheme,
26+
styled
2627
} from '@mui/material';
27-
import { styled } from '@mui/material/styles';
2828

2929
import DoneTwoToneIcon from '@mui/icons-material/DoneTwoTone';
3030
import DeleteTwoToneIcon from '@mui/icons-material/DeleteTwoTone';

src/content/applications/Users/settings/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ import { useState } from 'react';
22
import { Helmet } from 'react-helmet-async';
33
import PageHeader from './PageHeader';
44
import PageTitleWrapper from 'src/components/PageTitleWrapper';
5-
import { Container, Tabs, Tab, Grid } from '@mui/material';
5+
import { Container, Tabs, Tab, Grid, styled } from '@mui/material';
66
import Footer from 'src/components/Footer';
7-
import { styled } from '@mui/material/styles';
87

98
import ActivityTab from './ActivityTab';
109
import EditProfileTab from './EditProfileTab';

src/content/overview/Hero/index.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
import { Box, Button, Container, Grid, Typography } from '@mui/material';
1+
import { Box, Button, Container, Grid, Typography, styled } from '@mui/material';
22

33
import { Link as RouterLink } from 'react-router-dom';
44

5-
import { styled } from '@mui/material/styles';
6-
75
const TypographyH1 = styled(Typography)(
86
({ theme }) => `
97
font-size: ${theme.typography.pxToRem(50)};
@@ -123,7 +121,7 @@ function Hero() {
123121
</MuiAvatar>
124122
<Typography variant="h4">
125123
<Box sx={{ pb: 2 }}>
126-
<b>Powered by Material-UI</b>
124+
<b>Powered by MUI (Material-UI)</b>
127125
</Box>
128126
<Typography component="span" variant="subtitle2">
129127
A simple and customizable component library to build faster,

src/content/overview/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
import { Box, Container, Card } from '@mui/material';
1+
import { Box, Container, Card, styled } from '@mui/material';
22
import { Helmet } from 'react-helmet-async';
33

4-
import { styled } from '@mui/material/styles';
54
import Logo from 'src/components/LogoSign';
65
import Hero from './Hero';
76

src/content/pages/Components/Cards/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import {
99
Card,
1010
CardHeader,
1111
CardContent,
12-
Divider
12+
Divider,
13+
styled
1314
} from '@mui/material';
1415
import Footer from 'src/components/Footer';
1516
import CardActions from '@mui/material/CardActions';
16-
import { styled } from '@mui/material/styles';
1717

1818
import Button from '@mui/material/Button';
1919
import Box from '@mui/material/Box';

0 commit comments

Comments
 (0)