From 9a5d3cbc93891459cacc63cf0e1f8a90db0af18a Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Sun, 10 Apr 2022 22:13:06 +0200 Subject: [PATCH] Reorder ids to match physical layout --- src/Components/KnobSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/KnobSection.tsx b/src/Components/KnobSection.tsx index eb6d9e4..3554f02 100644 --- a/src/Components/KnobSection.tsx +++ b/src/Components/KnobSection.tsx @@ -10,7 +10,7 @@ justify-content: space-between; margin: 1rem; `; -const ids: number[] = [0, 1, 2, 3]; +const ids: number[] = [2, 3, 1, 0]; const KnobSection = () => { const serialConnection = useAppSelector((state) => state.serialConnection);