Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: format code with Prettier #248

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/components/PostCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const PostCard = ({ post }) => {
)}
</Paper>
</Popover>
<AvatarGroup max={4} total={34} sx={{ '& .MuiAvatar-root': { width: 24, height: 24, fontSize: 12, cursor: 'pointer' } }}>
<AvatarGroup max={4} total={34} sx={{ '& .MuiAvatar-root': { width: 24, height: 24, fontSize: 12, cursor: 'pointer' } }}>
<Avatar alt="Remy Sharp" src="https://mui.com/static/images/avatar/1.jpg" />
<Avatar alt="Travis Howard" src="https://mui.com/static/images/avatar/2.jpg" />
<Avatar alt="Cindy Baker" src="https://mui.com/static/images/avatar/3.jpg" />
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const SideBar = ({ open, setOpen }) => {
)

return (
<SwipeableDrawer open={open} onOpen={() => { }} onClose={closeDrawer} position="sticky">
<SwipeableDrawer open={open} onOpen={() => {}} onClose={closeDrawer} position="sticky">
<Box role="presentation" maxWidth="500px" sx={{ width: { xs: '100vw' } }} bgcolor="background.paper">
<Box display="flex" justifyContent="space-between" m={1} alignItems="center" top={0} zIndex={4} bgcolor="background.paper" position="sticky">
<Button LinkComponent={Link} to="/" sx={{ ':hover': { backgroundColor: 'transparent' } }}>
Expand Down
Loading