Skip to content

Commit 7819be0

Browse files
committed
minor fixes
1 parent 7971cde commit 7819be0

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

src/common/CustomAppBar.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ export const CustomAppBar = (props: CustomAppBarProps) => {
7373
props.setOpen(2);
7474
}}
7575
sx={{
76-
display: { xs: "none", md: "none", lg: "block" },
7776
marginTop: { lg: "8px" },
7877
...(props.open === 2 && { display: "none" }),
7978
}}

src/features/TransitionTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { DataGrid } from "@mui/x-data-grid";
33
import { TransitionTableProps } from "./props/TransitionTableProps";
44
import { MaxNumberOfStates } from "../consts/MaxNumberOfStates";
55
import { GetBackgroundColor } from "../utils/GetBackgroundColor";
6-
import NoRowsOverlay from "./components/transitionTable/NoRowsOverlay";
6+
import { NoRowsOverlay } from "./components/transitionTable/NoRowsOverlay";
77

88
const TransitionTable = (props: TransitionTableProps) => {
99
console.log("re rendering TransitionTable: props", props);

src/features/components/nfaToDfa/ModifiedTable.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -428,10 +428,6 @@ export const ModifiedTable = (props: ModifiedTableProps) => {
428428
</Grid>
429429
<ToolsTransitionTable {...transitionTableProps} />
430430
</Grid>
431-
{/* Playground grid */}
432-
<Grid item xs={12} md={8}>
433-
{/* <NfaToDfaPlayground {...playgroundProps} /> */}
434-
</Grid>
435431
</Grid>
436432
</MainContent>
437433

0 commit comments

Comments
 (0)