Skip to content

Commit 29c47be

Browse files
committed
Tidy up and add comment
1 parent 8657ea9 commit 29c47be

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/blueapi/BlueapiComponents.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ type RunPlanButtonProps = {
2323
btnSize?: ButtonSize;
2424
};
2525

26+
// @{todo} Ideally we should be able to set up the stylings for
27+
// a custom button in the proper way by doing something like:
2628
// const CustomRunButton = styled(Button)({
2729
// width: "100%",
2830
// height: "85%",
@@ -31,6 +33,7 @@ type RunPlanButtonProps = {
3133
// padding: "var(--padding)",
3234
// margin: "var(--margin)",
3335
// });
36+
// This will be another PR (link to come)
3437

3538
export function RunPlanButton(props: RunPlanButtonProps) {
3639
const [openSnackbar, setOpenSnackbar] = React.useState<boolean>(false);

src/screens/OavMover.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {
1111
Typography,
1212
useTheme,
1313
Drawer,
14-
Tooltip,
1514
} from "@mui/material";
1615
import { OavVideoStream } from "../components/OavVideoStream";
1716
import {
@@ -21,7 +20,6 @@ import {
2120
ArrowUpwardRounded,
2221
Close,
2322
Help,
24-
Padding,
2523
} from "@mui/icons-material";
2624
import { useState } from "react";
2725

0 commit comments

Comments
 (0)