Skip to content

Commit 6c0754e

Browse files
committed
Fix lint errors
1 parent 39a9a6b commit 6c0754e

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

frontend/src/components/CustomChip/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import CloseIcon from "@mui/icons-material/Close";
44

55
const CustomChip: React.FC<{
66
label: string;
7+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
78
onDelete: (event: any) => void;
89
}> = ({ label, onDelete }) => {
910
return (

frontend/src/pages/Home/index.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,11 @@ import {
22
Autocomplete,
33
Button,
44
Card,
5-
Checkbox,
6-
Chip,
75
FormControl,
86
Grid2,
9-
ListItemText,
10-
MenuItem,
11-
Select,
127
TextField,
138
Typography,
149
} from "@mui/material";
15-
import CloseIcon from "@mui/icons-material/Close";
1610
import { useEffect, useReducer, useState } from "react";
1711

1812
import classes from "./index.module.css";

0 commit comments

Comments
 (0)