diff --git a/web/pages/groups.tsx b/web/pages/groups.tsx
index 49d99d18..d5c73913 100644
--- a/web/pages/groups.tsx
+++ b/web/pages/groups.tsx
@@ -102,6 +102,32 @@ export default function Groups(props: {
className="mb-4"
currentPageForAnalytics={'groups'}
tabs={[
+ {
+ title: 'All',
+ content: (
+
+ debouncedQuery(e.target.value)}
+ placeholder="Search groups"
+ value={query}
+ className="input input-bordered mb-4 w-full"
+ />
+
+
+ {matchesOrderedByMostContractAndMembers.map((group) => (
+
+ ))}
+
+
+ ),
+ },
...(user
? [
{
@@ -136,32 +162,6 @@ export default function Groups(props: {
},
]
: []),
- {
- title: 'All',
- content: (
-
- debouncedQuery(e.target.value)}
- placeholder="Search groups"
- value={query}
- className="input input-bordered mb-4 w-full"
- />
-
-
- {matchesOrderedByMostContractAndMembers.map((group) => (
-
- ))}
-
-
- ),
- },
]}
/>