From b7fb2244424c2e42524dd6f65217e46b49ef4202 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Fri, 31 Dec 2021 21:46:24 +0100 Subject: [PATCH] Move to separate directory --- Dashboard/src/redux/actions/asyncSerialConnectionActions.ts | 2 +- Dashboard/src/{ => serial}/PortController.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename Dashboard/src/{ => serial}/PortController.ts (100%) diff --git a/Dashboard/src/redux/actions/asyncSerialConnectionActions.ts b/Dashboard/src/redux/actions/asyncSerialConnectionActions.ts index de2d6a5..57a0e62 100644 --- a/Dashboard/src/redux/actions/asyncSerialConnectionActions.ts +++ b/Dashboard/src/redux/actions/asyncSerialConnectionActions.ts @@ -2,7 +2,7 @@ import { ThunkResult } from "typesafe-actions"; import { connectionStart, connectionSuccess, connectionFailure, setPortController, connectionEnd, } from "./serialConnectionActions"; -import PortController from "../../PortController"; +import PortController from "../../serial/PortController"; const connect = (): ThunkResult => async (dispatch, getState) => { const state = getState(); diff --git a/Dashboard/src/PortController.ts b/Dashboard/src/serial/PortController.ts similarity index 100% rename from Dashboard/src/PortController.ts rename to Dashboard/src/serial/PortController.ts