From d0b7aa9a9a3449bccd7cd3185ec4e4572773e944 Mon Sep 17 00:00:00 2001 From: Jerald-Golden-B Date: Wed, 13 Aug 2025 18:21:35 +0530 Subject: [PATCH] file name capitialization --- ...assemblyAction.tsx => AssemblyAction1.tsx} | 2 +- .../{DefaultAction.tsx => DefaultAction1.tsx} | 14 +- .../{DelayAction.tsx => DelayAction1.tsx} | 0 .../{DespawnAction.tsx => DespawnAction1.tsx} | 20 +-- ...laceAction.tsx => PickAndPlaceAction1.tsx} | 58 +++---- ...llarJibAction.tsx => PillarJibAction1.tsx} | 0 .../{ProcessAction.tsx => ProcessAction1.tsx} | 96 ++++++------ .../{SpawnAction.tsx => SpawnAction1.tsx} | 144 +++++++++--------- .../{StorageAction.tsx => StorageAction1.tsx} | 114 +++++++------- .../{SwapAction.tsx => SwapAction1.tsx} | 50 +++--- .../{TravelAction.tsx => TravelAction1.tsx} | 140 ++++++++--------- .../{workerAction.tsx => WorkerAction1.tsx} | 0 .../mechanics/conveyorMechanics.tsx | 10 +- .../mechanics/humanMechanics.tsx | 4 +- .../mechanics/machineMechanics.tsx | 2 +- .../mechanics/roboticArmMechanics.tsx | 2 +- .../mechanics/storageMechanics.tsx | 2 +- .../mechanics/vehicleMechanics.tsx | 2 +- 18 files changed, 330 insertions(+), 330 deletions(-) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{assemblyAction.tsx => AssemblyAction1.tsx} (98%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{DefaultAction.tsx => DefaultAction1.tsx} (94%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{DelayAction.tsx => DelayAction1.tsx} (100%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{DespawnAction.tsx => DespawnAction1.tsx} (93%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{PickAndPlaceAction.tsx => PickAndPlaceAction1.tsx} (95%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{pillarJibAction.tsx => PillarJibAction1.tsx} (100%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{ProcessAction.tsx => ProcessAction1.tsx} (92%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{SpawnAction.tsx => SpawnAction1.tsx} (96%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{StorageAction.tsx => StorageAction1.tsx} (97%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{SwapAction.tsx => SwapAction1.tsx} (95%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{TravelAction.tsx => TravelAction1.tsx} (96%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{workerAction.tsx => WorkerAction1.tsx} (100%) diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/assemblyAction.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/AssemblyAction1.tsx similarity index 98% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/assemblyAction.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/AssemblyAction1.tsx index e371f6f..f141c83 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/assemblyAction.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/AssemblyAction1.tsx @@ -1,7 +1,7 @@ import React from "react"; import InputRange from "../../../../../ui/inputs/InputRange"; import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; -import SwapAction from "./SwapAction"; +import SwapAction from "./SwapAction1"; interface AssemblyActionProps { processTime: { diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DefaultAction.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DefaultAction1.tsx similarity index 94% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/DefaultAction.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/DefaultAction1.tsx index 88f515e..2b0a43c 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DefaultAction.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DefaultAction1.tsx @@ -1,7 +1,7 @@ -import React from "react"; - -const DefaultAction:React.FC = () => { - return <>; -}; - -export default DefaultAction; +import React from "react"; + +const DefaultAction:React.FC = () => { + return <>; +}; + +export default DefaultAction; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DelayAction.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DelayAction1.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/DelayAction.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/DelayAction1.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DespawnAction.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DespawnAction1.tsx similarity index 93% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/DespawnAction.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/DespawnAction1.tsx index 88cbd2e..13d71af 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DespawnAction.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DespawnAction1.tsx @@ -1,10 +1,10 @@ -import React from "react"; - -const DespawnAction: React.FC = () => { - return ( - <> - - ); -}; - -export default DespawnAction; +import React from "react"; + +const DespawnAction: React.FC = () => { + return ( + <> + + ); +}; + +export default DespawnAction; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/PickAndPlaceAction.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/PickAndPlaceAction1.tsx similarity index 95% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/PickAndPlaceAction.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/PickAndPlaceAction1.tsx index 08c3d60..750b1aa 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/PickAndPlaceAction.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/PickAndPlaceAction1.tsx @@ -1,29 +1,29 @@ -import React from "react"; - -interface PickAndPlaceActionProps { - clearPoints: () => void; -} - -const PickAndPlaceAction: React.FC = ({ - clearPoints, -}) => { - return ( -
-
-
Reset
- -
-
- ); -}; - -export default PickAndPlaceAction; +import React from "react"; + +interface PickAndPlaceActionProps { + clearPoints: () => void; +} + +const PickAndPlaceAction: React.FC = ({ + clearPoints, +}) => { + return ( +
+
+
Reset
+ +
+
+ ); +}; + +export default PickAndPlaceAction; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/pillarJibAction.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/PillarJibAction1.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/pillarJibAction.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/PillarJibAction1.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/ProcessAction.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/ProcessAction1.tsx similarity index 92% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/ProcessAction.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/ProcessAction1.tsx index 331cf1b..5974233 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/ProcessAction.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/ProcessAction1.tsx @@ -1,48 +1,48 @@ -import React from "react"; -import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; -import SwapAction from "./SwapAction"; - -interface ProcessActionProps { - value: string; - min: number; - max: number; - defaultValue: string; - onChange: (value: string) => void; - swapOptions: string[]; - swapDefaultOption: string; - onSwapSelect: (value: string) => void; -} - -const ProcessAction: React.FC = ({ - value, - min, - max, - defaultValue, - onChange, - swapOptions, - swapDefaultOption, - onSwapSelect, -}) => { - return ( - <> - { }} - onChange={onChange} - /> - - - ); -}; - -export default ProcessAction; +import React from "react"; +import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; +import SwapAction from "./SwapAction1"; + +interface ProcessActionProps { + value: string; + min: number; + max: number; + defaultValue: string; + onChange: (value: string) => void; + swapOptions: string[]; + swapDefaultOption: string; + onSwapSelect: (value: string) => void; +} + +const ProcessAction: React.FC = ({ + value, + min, + max, + defaultValue, + onChange, + swapOptions, + swapDefaultOption, + onSwapSelect, +}) => { + return ( + <> + { }} + onChange={onChange} + /> + + + ); +}; + +export default ProcessAction; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/SpawnAction.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/SpawnAction1.tsx similarity index 96% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/SpawnAction.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/SpawnAction1.tsx index 7d8002e..f82be50 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/SpawnAction.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/SpawnAction1.tsx @@ -1,72 +1,72 @@ -import React from "react"; -import PreviewSelectionWithUpload from "../../../../../ui/inputs/PreviewSelectionWithUpload"; -import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; -import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; - -interface SpawnActionProps { - onChangeInterval: (value: string) => void; - onChangeCount: (value: string) => void; - defaultOption: string; - options: string[]; - onSelect: (option: string) => void; - intervalValue: string; - countValue: string; - intervalMin: number; - intervalMax: number; - intervalDefaultValue: string; - countMin: number; - countMax: number; - countDefaultValue: string; -} - -const SpawnAction: React.FC = ({ - onChangeInterval, - onChangeCount, - defaultOption, - options, - onSelect, - intervalValue, - countValue, - intervalMin, - intervalMax, - intervalDefaultValue, - countMin, - countMax, - countDefaultValue, -}) => { - return ( - <> - { }} - onChange={onChangeInterval} - /> - { }} - onChange={onChangeCount} - /> - {/* */} - - - ); -}; - -export default SpawnAction; +import React from "react"; +import PreviewSelectionWithUpload from "../../../../../ui/inputs/PreviewSelectionWithUpload"; +import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; +import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; + +interface SpawnActionProps { + onChangeInterval: (value: string) => void; + onChangeCount: (value: string) => void; + defaultOption: string; + options: string[]; + onSelect: (option: string) => void; + intervalValue: string; + countValue: string; + intervalMin: number; + intervalMax: number; + intervalDefaultValue: string; + countMin: number; + countMax: number; + countDefaultValue: string; +} + +const SpawnAction: React.FC = ({ + onChangeInterval, + onChangeCount, + defaultOption, + options, + onSelect, + intervalValue, + countValue, + intervalMin, + intervalMax, + intervalDefaultValue, + countMin, + countMax, + countDefaultValue, +}) => { + return ( + <> + { }} + onChange={onChangeInterval} + /> + { }} + onChange={onChangeCount} + /> + {/* */} + + + ); +}; + +export default SpawnAction; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/StorageAction.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/StorageAction1.tsx similarity index 97% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/StorageAction.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/StorageAction1.tsx index 5fd62df..4d280d2 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/StorageAction.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/StorageAction1.tsx @@ -1,57 +1,57 @@ -import React from "react"; -import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; -import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; - -interface StorageActionProps { - type: "store" | "spawn" | "default"; - value: string; - min: number; - max?: number; - defaultValue: string; - currentMaterialType: string; - handleCapacityChange: (value: string) => void; - handleMaterialTypeChange: (value: string) => void; -} - -const StorageAction: React.FC = ({ type, value, min, max, defaultValue, currentMaterialType, handleCapacityChange, handleMaterialTypeChange }) => { - return ( - <> - {type === 'store' && - { }} - onChange={handleCapacityChange} - /> - } - {type === 'spawn' && - <> - { }} - onChange={handleCapacityChange} - /> - - - } - - ); -}; - -export default StorageAction; +import React from "react"; +import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; +import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; + +interface StorageActionProps { + type: "store" | "spawn" | "default"; + value: string; + min: number; + max?: number; + defaultValue: string; + currentMaterialType: string; + handleCapacityChange: (value: string) => void; + handleMaterialTypeChange: (value: string) => void; +} + +const StorageAction: React.FC = ({ type, value, min, max, defaultValue, currentMaterialType, handleCapacityChange, handleMaterialTypeChange }) => { + return ( + <> + {type === 'store' && + { }} + onChange={handleCapacityChange} + /> + } + {type === 'spawn' && + <> + { }} + onChange={handleCapacityChange} + /> + + + } + + ); +}; + +export default StorageAction; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/SwapAction.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/SwapAction1.tsx similarity index 95% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/SwapAction.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/SwapAction1.tsx index 5eaf991..14a7c18 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/SwapAction.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/SwapAction1.tsx @@ -1,25 +1,25 @@ -import React from "react"; -import PreviewSelectionWithUpload from "../../../../../ui/inputs/PreviewSelectionWithUpload"; - -interface SwapActionProps { - onSelect: (option: string) => void; - defaultOption: string; - options: string[]; -} - -const SwapAction: React.FC = ({ - onSelect, - defaultOption, - options, -}) => { - return ( - - ); -}; - -export default SwapAction; +import React from "react"; +import PreviewSelectionWithUpload from "../../../../../ui/inputs/PreviewSelectionWithUpload"; + +interface SwapActionProps { + onSelect: (option: string) => void; + defaultOption: string; + options: string[]; +} + +const SwapAction: React.FC = ({ + onSelect, + defaultOption, + options, +}) => { + return ( + + ); +}; + +export default SwapAction; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/TravelAction.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/TravelAction1.tsx similarity index 96% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/TravelAction.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/TravelAction1.tsx index db11181..5ae5d76 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/TravelAction.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/TravelAction1.tsx @@ -1,70 +1,70 @@ -import React from "react"; -import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; - -interface TravelActionProps { - loadCapacity: { - value: string; - min: number; - max: number; - defaultValue: string; - onChange: (value: string) => void; - }; - unloadDuration: { - value: string; - min: number; - max: number; - defaultValue: string; - onChange: (value: string) => void; - }; - clearPoints: () => void; -} - -const TravelAction: React.FC = ({ - loadCapacity, - unloadDuration, - clearPoints, -}) => { - return ( - <> - { }} - onChange={loadCapacity.onChange} - /> - { }} - onChange={unloadDuration.onChange} - /> -
-
-
Reset
- -
-
- - ); -}; - -export default TravelAction; +import React from "react"; +import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; + +interface TravelActionProps { + loadCapacity: { + value: string; + min: number; + max: number; + defaultValue: string; + onChange: (value: string) => void; + }; + unloadDuration: { + value: string; + min: number; + max: number; + defaultValue: string; + onChange: (value: string) => void; + }; + clearPoints: () => void; +} + +const TravelAction: React.FC = ({ + loadCapacity, + unloadDuration, + clearPoints, +}) => { + return ( + <> + { }} + onChange={loadCapacity.onChange} + /> + { }} + onChange={unloadDuration.onChange} + /> +
+
+
Reset
+ +
+
+ + ); +}; + +export default TravelAction; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/workerAction.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/WorkerAction1.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/workerAction.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/WorkerAction1.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/conveyorMechanics.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/conveyorMechanics.tsx index 990d046..b3df5d6 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/conveyorMechanics.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/conveyorMechanics.tsx @@ -1,12 +1,12 @@ import { useEffect, useState } from "react"; import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; -import DelayAction from "../actions/DelayAction"; +import DelayAction from "../actions/DelayAction1"; import RenameInput from "../../../../../ui/inputs/RenameInput"; import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; -import DespawnAction from "../actions/DespawnAction"; -import SwapAction from "../actions/SwapAction"; -import SpawnAction from "../actions/SpawnAction"; -import DefaultAction from "../actions/DefaultAction"; +import DespawnAction from "../actions/DespawnAction1"; +import SwapAction from "../actions/SwapAction1"; +import SpawnAction from "../actions/SpawnAction1"; +import DefaultAction from "../actions/DefaultAction1"; import Trigger from "../trigger/Trigger"; import { useSelectedAction, useSelectedEventData } from "../../../../../../store/simulation/useSimulationStore"; import ActionsList from "../components/ActionsList"; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/humanMechanics.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/humanMechanics.tsx index 4b29f8c..ebd9d90 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/humanMechanics.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/humanMechanics.tsx @@ -6,8 +6,8 @@ import RenameInput from "../../../../../ui/inputs/RenameInput"; import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; import Trigger from "../trigger/Trigger"; import ActionsList from "../components/ActionsList"; -import WorkerAction from "../actions/WorkerAction"; -import AssemblyAction from "../actions/AssemblyAction"; +import WorkerAction from "../actions/WorkerAction1"; +import AssemblyAction from "../actions/AssemblyAction1"; import { useSelectedEventData, useSelectedAction } from "../../../../../../store/simulation/useSimulationStore"; import { upsertProductOrEventApi } from "../../../../../../services/simulation/products/UpsertProductOrEventApi"; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/machineMechanics.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/machineMechanics.tsx index 22b3277..fb76932 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/machineMechanics.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/machineMechanics.tsx @@ -3,7 +3,7 @@ import RenameInput from "../../../../../ui/inputs/RenameInput"; import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; import Trigger from "../trigger/Trigger"; import { useSelectedAction, useSelectedEventData } from "../../../../../../store/simulation/useSimulationStore"; -import ProcessAction from "../actions/ProcessAction"; +import ProcessAction from "../actions/ProcessAction1"; import ActionsList from "../components/ActionsList"; import { upsertProductOrEventApi } from "../../../../../../services/simulation/products/UpsertProductOrEventApi"; import { useProductContext } from "../../../../../../modules/simulation/products/productContext"; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/roboticArmMechanics.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/roboticArmMechanics.tsx index 0c7c6e3..f72cb36 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/roboticArmMechanics.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/roboticArmMechanics.tsx @@ -5,7 +5,7 @@ import RenameInput from "../../../../../ui/inputs/RenameInput"; import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; import Trigger from "../trigger/Trigger"; import { useSelectedEventData, useSelectedAction } from "../../../../../../store/simulation/useSimulationStore"; -import PickAndPlaceAction from "../actions/PickAndPlaceAction"; +import PickAndPlaceAction from "../actions/PickAndPlaceAction1"; import ActionsList from "../components/ActionsList"; import { upsertProductOrEventApi } from "../../../../../../services/simulation/products/UpsertProductOrEventApi"; import { useProductContext } from "../../../../../../modules/simulation/products/productContext"; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/storageMechanics.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/storageMechanics.tsx index 796dbc5..02a0fc6 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/storageMechanics.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/storageMechanics.tsx @@ -2,7 +2,7 @@ import { useEffect, useMemo, useState } from "react"; import RenameInput from "../../../../../ui/inputs/RenameInput"; import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; import Trigger from "../trigger/Trigger"; -import StorageAction from "../actions/StorageAction"; +import StorageAction from "../actions/StorageAction1"; import ActionsList from "../components/ActionsList"; import { upsertProductOrEventApi } from "../../../../../../services/simulation/products/UpsertProductOrEventApi"; import { useSelectedAction, useSelectedEventData } from "../../../../../../store/simulation/useSimulationStore"; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/vehicleMechanics.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/vehicleMechanics.tsx index fada871..4794e9e 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/vehicleMechanics.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/vehicleMechanics.tsx @@ -4,7 +4,7 @@ import RenameInput from "../../../../../ui/inputs/RenameInput"; import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; import Trigger from "../trigger/Trigger"; import { useSelectedAction, useSelectedEventData } from "../../../../../../store/simulation/useSimulationStore"; -import TravelAction from "../actions/TravelAction"; +import TravelAction from "../actions/TravelAction1"; import ActionsList from "../components/ActionsList"; import { upsertProductOrEventApi } from "../../../../../../services/simulation/products/UpsertProductOrEventApi"; import { useProductContext } from "../../../../../../modules/simulation/products/productContext";