Browse Source

move recent activity above top categories

Klaudiusz Dembler 4 years ago
parent
commit
9af18e41ae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pioneer/packages/joy-forum/src/ForumRoot.tsx

+ 1 - 1
pioneer/packages/joy-forum/src/ForumRoot.tsx

@@ -19,10 +19,10 @@ const ForumRoot: React.FC = () => {
   return (
     <>
       <CategoryCrumbs root />
+      <RecentActivity />
       <Section title="Top categories">
         <CategoryList />
       </Section>
-      <RecentActivity />
     </>
   );
 };