Skip to content

Commit 1be4842

Browse files
committed
Remove limit of agents fetched on publisher page
1 parent fee20f9 commit 1be4842

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

web/src/app/publishers/[id]/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ const PublisherPage = async ({ params }: PublisherPageProps) => {
8181
.from(schema.agentConfig)
8282
.where(eq(schema.agentConfig.publisher_id, publisherData.id))
8383
.orderBy(schema.agentConfig.created_at)
84-
.limit(50) // Show more agents for grouping
8584

8685
// Group agents by name
8786
const groupedAgents: Record<string, GroupedAgent> = {}

0 commit comments

Comments
 (0)