feature/IO-3255-simplified-parts-management - Add Dark mode

This commit is contained in:
Dave
2025-08-13 17:39:05 -04:00
parent 2ab6093bd8
commit 960a2ccd30
2 changed files with 2 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
import { useSplitTreatments } from "@splitsoftware/splitio-react";
import { Card, Col, Input, Row, Space, Typography } from "antd";
import _ from "lodash";
import React, { useState } from "react";
import { useState } from "react";
import { useTranslation } from "react-i18next";
import { connect } from "react-redux";
import { createStructuredSelector } from "reselect";
@@ -18,7 +18,7 @@ const mapStateToProps = createStructuredSelector({
bodyshop: selectBodyshop
});
const mapDispatchToProps = (dispatch) => ({});
const mapDispatchToProps = () => ({});
export function PrintCenterJobsComponent({ printCenterModal, bodyshop }) {
const [search, setSearch] = useState("");

View File

@@ -1,4 +1,3 @@
import React from "react";
import { useTranslation } from "react-i18next";
import PrintCenterJobs from "../print-center-jobs/print-center-jobs.component";