Reorder Dashboard

This commit is contained in:
Johnny Gear 2026-03-09 11:50:50 -05:00
parent 30b92ba9d4
commit fcf4f2ba55

View file

@ -68,9 +68,9 @@ export const Dashboard: React.FC = () => {
return (
<>
{timeline.length > 0 ? <TimelineList timeline={timeline} /> : null}
<OrderSets orderSets={orderSets} username={username} />
{subs.length > 0 ? <SubsList subs={subs} /> : null}
{timeline.length > 0 ? <TimelineList timeline={timeline} /> : null}
</>
);
};