Skip to content

Commit 176c268

Browse files
committed
fix(footer): fix version spacing in footer
1 parent 76147f2 commit 176c268

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

components/AppVersions.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useQuery } from "react-query";
22

3-
import { ListItem, ListItemText, Typography } from "@mui/material";
3+
import { ListItem as MuiListItem, ListItemText, styled, Typography } from "@mui/material";
44
import axios from "axios";
55

66
import { AS_API_URL, DM_API_URL } from "../constants/proxies";
@@ -38,3 +38,5 @@ export const AppVersions = () => {
3838
</>
3939
);
4040
};
41+
42+
const ListItem = styled(MuiListItem)({ paddingLeft: 0 });

0 commit comments

Comments
 (0)