diff --git a/jsx/src/components/DynamicTable/DynamicTable.jsx b/jsx/src/components/DynamicTable/DynamicTable.jsx index 8e87662d..b8d8a070 100644 --- a/jsx/src/components/DynamicTable/DynamicTable.jsx +++ b/jsx/src/components/DynamicTable/DynamicTable.jsx @@ -1,4 +1,4 @@ -import React, { useState, useEffect } from "react"; +import React, { useState } from "react"; import "./table-select.css"; import PropTypes from "prop-types"; diff --git a/jsx/src/components/Groups/Groups.test.js b/jsx/src/components/Groups/Groups.test.js index 25ac4a5a..df639f8b 100644 --- a/jsx/src/components/Groups/Groups.test.js +++ b/jsx/src/components/Groups/Groups.test.js @@ -2,7 +2,7 @@ import React from "react"; import "@testing-library/jest-dom"; import { act } from "react-dom/test-utils"; import { render, screen, fireEvent } from "@testing-library/react"; -import { Provider, useDispatch, useSelector } from "react-redux"; +import { Provider, useSelector } from "react-redux"; import { createStore } from "redux"; import { HashRouter, useSearchParams } from "react-router-dom"; // eslint-disable-next-line diff --git a/jsx/src/components/PaginationFooter/PaginationFooter.jsx b/jsx/src/components/PaginationFooter/PaginationFooter.jsx index 40dd017c..18acde01 100644 --- a/jsx/src/components/PaginationFooter/PaginationFooter.jsx +++ b/jsx/src/components/PaginationFooter/PaginationFooter.jsx @@ -9,7 +9,7 @@ const PaginationFooter = (props) => { return (

- Displaying {offset}-{offset + visible} + Displaying {offset}-{offset + visible} {total ? `of ${total}` : ""}
{offset >= 1 ? (