We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39a9a6b commit 6c0754eCopy full SHA for 6c0754e
frontend/src/components/CustomChip/index.tsx
@@ -4,6 +4,7 @@ import CloseIcon from "@mui/icons-material/Close";
4
5
const CustomChip: React.FC<{
6
label: string;
7
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
8
onDelete: (event: any) => void;
9
}> = ({ label, onDelete }) => {
10
return (
frontend/src/pages/Home/index.tsx
@@ -2,17 +2,11 @@ import {
2
Autocomplete,
3
Button,
Card,
- Checkbox,
- Chip,
FormControl,
Grid2,
- ListItemText,
- MenuItem,
11
- Select,
12
TextField,
13
Typography,
14
} from "@mui/material";
15
-import CloseIcon from "@mui/icons-material/Close";
16
import { useEffect, useReducer, useState } from "react";
17
18
import classes from "./index.module.css";
0 commit comments