Skip to content

Commit f9262c3

Browse files
committed
fix dependency and reformat
1 parent cdec418 commit f9262c3

File tree

7 files changed

+3031
-1019
lines changed

7 files changed

+3031
-1019
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.github/
12
node_modules
23
frontend/node_modules
34
backend/node_modules

frontend/src/components/podgroups/PodGroupDialog.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,3 @@ const PodGroupDialog = ({ open, handleClose, selectedName, selectedYaml }) => {
8383
};
8484

8585
export default PodGroupDialog;
86-
87-

frontend/src/components/podgroups/PodGroups.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,4 +224,3 @@ const PodGroups = () => {
224224
};
225225

226226
export default PodGroups;
227-

frontend/src/components/podgroups/PodGroupsTable/PodGroupsTable.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,3 @@ const PodGroupsTable = ({
9696
};
9797

9898
export default PodGroupsTable;
99-
100-

frontend/src/components/podgroups/PodGroupsTable/PodGroupsTableRow.jsx

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,8 @@
11
import React from "react";
2-
import {
3-
TableRow,
4-
TableCell,
5-
Box,
6-
useTheme,
7-
alpha,
8-
} from "@mui/material";
2+
import { TableRow, TableCell, Box, useTheme, alpha } from "@mui/material";
93
import JobStatusChip from "../../jobs/JobStatusChip"; // Reuse chip
104

11-
const PodGroupsTableRow = ({
12-
podGroup,
13-
handlePodGroupClick,
14-
}) => {
5+
const PodGroupsTableRow = ({ podGroup, handlePodGroupClick }) => {
156
const theme = useTheme();
167

178
return (
@@ -122,5 +113,3 @@ const PodGroupsTableRow = ({
122113
};
123114

124115
export default PodGroupsTableRow;
125-
126-

0 commit comments

Comments
 (0)