remove unused imports

This commit is contained in:
2024-06-19 06:32:38 +01:00
parent e4a1903b48
commit b0e2bb6e14
263 changed files with 1458 additions and 2693 deletions
+7 -16
View File
@@ -1,30 +1,21 @@
import Link from "next/link";
import _, { has, last } from "lodash";
import { useRouter } from "next/router";
import _ from "lodash";
import useTranslation from "next-translate/useTranslation";
import { useState, useEffect } from "react";
import { useRouter } from "next/router";
import { useState } from "react";
import { connect } from "react-redux";
import { formValueSelector, reduxForm } from "redux-form";
import xpath from "xpath";
import BuildRow from "./buildrow";
import { reduxForm, formValueSelector, getFormSubmitErrors } from "redux-form";
import { useDispatch, useSelector, shallowEqual, connect } from "react-redux";
import { sendEmail, uploadFiles } from "../../actions";
import {
setCaseReference,
setCurrentSection,
setDocumentsList,
setFilesForAppeal,
setNewAppealProgress,
} from "../../store/appealType/action";
import { getFormCollectionByID, getProgressObj } from "../utils";
import {
updateCase,
patchCase,
uploadFiles,
sendEmail,
generateAppealPDF,
} from "../../actions";
import BuildRow from "./buildrow";
import { FieldsTranslations } from "../elements";
import { JSONPath as jsonpath } from "jsonpath-plus";
import BuildProgress from "./buildprogress";
let BuildSection = (props) => {