Skip to content

Commit 7f5d8c1

Browse files
committed
feat: swap the position of node and subscription
1 parent a8e0a4f commit 7f5d8c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/(protected)/network/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ export default function NetworkPage() {
2222
/>
2323

2424
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
25-
<SubscriptionSection subscriptions={subscriptionsQuery.data?.subscriptions || []} />
26-
2725
<NodeSection nodes={nodesQuery.data?.nodes.edges || []} isLoading={nodesQuery.isLoading} />
26+
27+
<SubscriptionSection subscriptions={subscriptionsQuery.data?.subscriptions || []} />
2828
</div>
2929
</div>
3030
</ResourcePage>

0 commit comments

Comments
 (0)