got rid of material-ui references and fixed fan icon import

This commit is contained in:
Carter 2025-03-18 11:40:16 -06:00
parent c84f6194fa
commit 65eeb9e8b4
20 changed files with 163 additions and 94 deletions

View file

@ -22,7 +22,6 @@ import {
} from "@mui/material";
import AddIcon from "@mui/icons-material/AddCircle";
import RemoveIcon from "@mui/icons-material/RemoveCircle";
// import { TimePicker } from "@material-ui/pickers";
import classNames from "classnames";
import DeleteButton from "common/DeleteButton";
import ResponsiveDialog from "common/ResponsiveDialog";
@ -557,7 +556,7 @@ export default function InteractionSettings(props: Props) {
setInteraction(updatedInteraction);
};
const toggleReport = (event: any) => {
const toggleReport = (_event: any) => {
let updatedInteraction = Interaction.clone(interaction);
let notifications = or(
interaction.settings.notifications,
@ -568,7 +567,7 @@ export default function InteractionSettings(props: Props) {
setInteraction(updatedInteraction);
};
const toggleNotify = (event: any) => {
const toggleNotify = (_event: any) => {
let updatedInteraction = Interaction.clone(interaction);
let notifications = or(
updatedInteraction.settings.notifications,