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
+6 -12
View File
@@ -5,9 +5,9 @@ import { connect } from "react-redux";
import {
getBasicDNSSearch,
getDNSCoords,
getIP,
getPortalModuleDetails,
getWatchedCases,
getIP,
} from "../../actions";
import Breadcrumbs from "../../components/breadcrumbs";
@@ -16,27 +16,23 @@ import DNSSearchResults from "../../components/dnssearchresults";
import Footer from "../../components/footer";
import Header from "../../components/header";
import {
getSearchDetails,
getFormCollectionByID,
getSearchDetails,
} from "../../components/utils";
import { setLoggedInUserId } from "../../store/accountDetails/action";
import { setSearch } from "../../store/search/action";
import {
setDNSCoords,
setSearchDetails,
setSearchResults,
setDNSCoords,
} from "../../store/searchOutput/action";
import { wrapper } from "../../store/store";
import {
setWatchedCases,
setWatchedCasesDetails,
} from "../../store/watchedCases/action";
import {
setAccountDetails,
setContainerID,
setLoggedInUserId,
} from "../../store/accountDetails/action";
import { getSession, useSession } from "next-auth/react";
import { getSession } from "next-auth/react";
const Home = (props) => {
const { footerLinks, pages, watchedCases, showMap } = props;
@@ -116,7 +112,7 @@ const Home = (props) => {
</Head>
<div id="page_wrapper">
<CookieBanner />
<Header courseName={t("common:service-name")} />
<Header />
<div className="govuk-width-container">
<Breadcrumbs slug={appealtypes} />
<DNSSearchResults
@@ -196,7 +192,6 @@ export const getServerSideProps = wrapper.getServerSideProps(
);
const getDetails = (resultsObj, detailsType) => {
//console.log(resultsObj);
let detailsArr = [];
resultsObj = resultsObj.value;
const detailsObj = resultsObj.map((searchDetail, index) => {
@@ -222,7 +217,6 @@ const getDetails = (resultsObj, detailsType) => {
);
}
});
//console.log(detailsArr);
return Promise.all(detailsArr);
};