Skip to content

Commit

Permalink
Fixed missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Sallaa committed Jul 24, 2024
1 parent 9e7b362 commit 52ed9ce
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
import React, { useEffect, useRef, useState } from "react";
import {
Accordion,
AccordionDetails,
AccordionSummary,
Alert,
Box,
Card,
CardContent,
CardHeader,
Chip,
Grid,
IconButton,
Stack,
} from "@mui/material";
import { Close } from "@mui/icons-material";
import { Close, Download, ExpandMore } from "@mui/icons-material";
import { i18nLoadNamespace } from "components/Shared/Languages/i18nLoadNamespace";
import { useSelector } from "react-redux";
import { useTrackEvent } from "Hooks/useAnalytics";
Expand All @@ -18,14 +22,16 @@ import CustomAlertScore from "../../../Shared/CustomAlertScore";
import GaugeChart from "react-gauge-chart";
import Tooltip from "@mui/material/Tooltip";
import { exportReactElementAsJpg } from "../../../Shared/Utils/htmlUtils";
import GaugeChartModalExplanation from "../../../Shared/GaugeChartModalExplanation";
import NddDatagrid from "./NddDatagrid";
import {
DETECTION_THRESHOLDS,
getSyntheticImageDetectionAlgorithmFromApiName,
SyntheticImageDetectionAlgorithm,
syntheticImageDetectionAlgorithms,
} from "./SyntheticImageDetectionAlgorithms";
import GaugeChartModalExplanation from "../../../Shared/GaugeChartResults/GaugeChartModalExplanation";
import Typography from "@mui/material/Typography";
import Divider from "@mui/material/Divider";

/**
* Returns the alert color code for the given percentage n
Expand Down

0 comments on commit 52ed9ce

Please sign in to comment.