We can change the My Account section menu tree order in simple way.
Update below mentioned code in menu-tree.scss
.menu-tree{
margin-bottom: $sc-margin-lv4;
display: flex;
flex-direction: column;
}
Update below mentioned code in menu-tree-node.scss. Here we set the order for each item. After that deploy theme
[data-id="orders"]{
order: 0;
}
[data-id="billng"]{
order: 1;
}
[data-id="settings"]{
order: 2;
}
[data-id="productlists"]{
order: 3;
}
[data-id="subscription"]{
order: 4;
}
[data-id="cases"]{
order: 5;
}
