Skip to content

Commit f879c43

Browse files
committed
Fix leftover imports
1 parent c408444 commit f879c43

6 files changed

Lines changed: 5 additions & 9 deletions

File tree

src/components/events/partials/ModalTabsAndPages/EventDetailsCommentsTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import ButtonLikeAnchor from "../../../shared/ButtonLikeAnchor";
2525
import { ParseKeys } from "i18next";
2626
import ModalContentTable from "../../../shared/modals/ModalContentTable";
2727
import BaseButton from "../../../shared/BaseButton";
28-
import { LuCircleX, LuClock9, LuX } from "react-icons/lu";
28+
import { LuCircleX, LuClock9 } from "react-icons/lu";
2929

3030
/**
3131
* This component manages the comment tab of the event details modal

src/components/events/partials/ModalTabsAndPages/EventDetailsWorkflowTab.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ import { formatWorkflowsForDropdown } from "../../../../utils/dropDownUtils";
3333
import { ParseKeys } from "i18next";
3434
import ModalContent from "../../../shared/modals/ModalContent";
3535
import EventDetailsTabHierarchyNavigation from "./EventDetailsTabHierarchyNavigation";
36-
import { HiHandRaised } from "react-icons/hi2";
37-
import { LuBan, LuChevronRight, LuCircleStop, LuCircleX, LuHand, LuRefreshCw } from "react-icons/lu";
36+
import { LuChevronRight, LuCircleStop, LuCircleX, LuHand, LuRefreshCw } from "react-icons/lu";
3837

3938
type InitialValues = {
4039
workflowDefinition: string;

src/components/events/partials/modals/EditMetadataEventsModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { isEvent } from "../../../../slices/tableSlice";
2121
import WizardNavigationButtons from "../../../shared/wizard/WizardNavigationButtons";
2222
import { ParseKeys } from "i18next";
2323
import ModalContent from "../../../shared/modals/ModalContent";
24-
import { LuLoader, LuLoaderCircle } from "react-icons/lu";
24+
import { LuLoaderCircle } from "react-icons/lu";
2525

2626
/**
2727
* This component manges the edit metadata bulk action

src/components/shared/Table.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ import cn from "classnames";
3030

3131
import EditTableViewModal from "../shared/EditTableViewModal";
3232

33-
import sortIcon from "../../img/tbl-sort.png";
34-
import sortUpIcon from "../../img/tbl-sort-up.png";
35-
import sortDownIcon from "../../img/tbl-sort-down.png";
3633
import Notifications from "./Notifications";
3734
import { useAppDispatch, useAppSelector } from "../../store";
3835
import { TableColumn } from "../../configs/tableConfigs/aclsTableConfig";

src/components/shared/wizard/SelectContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useField } from "formik";
55
import { ParseKeys } from "i18next";
66
import SearchContainer from "../SearchContainer";
77
import BaseButton from "../BaseButton";
8-
import { LuArrowRightLeft, LuSearch } from "react-icons/lu";
8+
import { LuArrowRightLeft } from "react-icons/lu";
99

1010
type Item = {
1111
name: string

src/components/systems/partials/ServicesActionsCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { loadServicesIntoTable } from "../../../thunks/tableThunks";
22
import { useAppDispatch } from "../../../store";
33
import { Service, fetchServices, restartService } from "../../../slices/serviceSlice";
44
import ButtonLikeAnchor from "../../shared/ButtonLikeAnchor";
5-
import { LuRotateCcw, LuUndo } from "react-icons/lu";
5+
import { LuRotateCcw } from "react-icons/lu";
66

77
/**
88
* This component renders the action cells of services in the table view

0 commit comments

Comments
 (0)