Skip to content

Commit 73fbbb2

Browse files
committed
Format docs
1 parent 50a473c commit 73fbbb2

File tree

6 files changed

+0
-9
lines changed

6 files changed

+0
-9
lines changed

docs/data/joy/components/avatar/MaxAndTotalAvatars.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,10 @@ export default function GroupedAvatars() {
3737
],
3838
total: 24,
3939
};
40-
4140
const { avatars, surplus } = clampAvatars(dataFromTheServer.people, {
4241
max: 5,
4342
total: dataFromTheServer.total,
4443
});
45-
4644
return (
4745
<AvatarGroup>
4846
{avatars.map((avatar) => (

docs/data/material/components/autocomplete/FreeSoloCreateOptionDialog.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ export default function FreeSoloCreateOptionDialog() {
1919
title: '',
2020
year: '',
2121
});
22-
2322
toggleOpen(false);
2423
};
2524

@@ -34,7 +33,6 @@ export default function FreeSoloCreateOptionDialog() {
3433
title: dialogValue.title,
3534
year: parseInt(dialogValue.year, 10),
3635
});
37-
3836
handleClose();
3937
};
4038

docs/data/material/components/autocomplete/Playground.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ export default function Playground() {
88
options: top100Films,
99
getOptionLabel: (option) => option.title,
1010
};
11-
1211
const flatProps = {
1312
options: top100Films.map((option) => option.title),
1413
};
15-
1614
const [value, setValue] = React.useState(null);
1715

1816
return (

docs/data/material/components/autocomplete/Virtualize.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ const ListboxComponent = React.forwardRef(function ListboxComponent(props, ref)
6464
const smUp = useMediaQuery(theme.breakpoints.up('sm'), {
6565
noSsr: true,
6666
});
67-
6867
const itemCount = itemData.length;
6968
const itemSize = smUp ? 36 : 48;
7069

docs/data/material/components/snackbars/PositionedSnackbar.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export default function PositionedSnackbar() {
88
vertical: 'top',
99
horizontal: 'center',
1010
});
11-
1211
const { vertical, horizontal, open } = state;
1312

1413
const handleClick = (newState) => () => {

docs/data/material/components/tooltips/AnchorElTooltips.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export default function AnchorElTooltips() {
77
x: 0,
88
y: 0,
99
});
10-
1110
const popperRef = React.useRef(null);
1211
const areaRef = React.useRef(null);
1312

0 commit comments

Comments
 (0)