From 01877d42964dc5c692ded4d05b9146b4ee022381 Mon Sep 17 00:00:00 2001 From: Frank Waalkens Date: Wed, 11 Oct 2023 10:27:33 +0200 Subject: [PATCH] Rearranged imports inverter/charger. --- .../components/boxes/InverterCharger/InverterCharger.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/Marine2/components/boxes/InverterCharger/InverterCharger.tsx b/src/app/Marine2/components/boxes/InverterCharger/InverterCharger.tsx index d26be4fb5..8ae05fc99 100644 --- a/src/app/Marine2/components/boxes/InverterCharger/InverterCharger.tsx +++ b/src/app/Marine2/components/boxes/InverterCharger/InverterCharger.tsx @@ -1,9 +1,9 @@ -import { useAppStore, useInverterCharger, useShorePowerInput } from "@victronenergy/mfd-modules" +import { useState } from "react" import { observer } from "mobx-react-lite" -import InverterChargerIcon from "../../../images/icons/inverter-charger.svg" import { translate } from "react-i18nify" +import { useAppStore, useInverterCharger, useShorePowerInput } from "@victronenergy/mfd-modules" +import InverterChargerIcon from "../../../images/icons/inverter-charger.svg" import { formatStateForTranslation } from "../../../utils/format" -import { useState } from "react" import Button from "../../ui/Button" import InputLimitSelector from "../../ui/InputLimitSelector" import ValueBox from "../../ui/ValueBox"