Reorder ids to match physical layout
This commit is contained in:
parent
30fc7140eb
commit
9a5d3cbc93
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ justify-content: space-between;
|
||||||
margin: 1rem;
|
margin: 1rem;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const ids: number[] = [0, 1, 2, 3];
|
const ids: number[] = [2, 3, 1, 0];
|
||||||
|
|
||||||
const KnobSection = () => {
|
const KnobSection = () => {
|
||||||
const serialConnection = useAppSelector((state) => state.serialConnection);
|
const serialConnection = useAppSelector((state) => state.serialConnection);
|
||||||
|
|
Reference in a new issue