remove unused imports
This commit is contained in:
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user