File tree Expand file tree Collapse file tree 3 files changed +1
-71
lines changed
Expand file tree Collapse file tree 3 files changed +1
-71
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -86,20 +86,6 @@ export const revalidate = 60 * 10 // Revalidate every 10 minutes
8686export const dynamic = 'force-static'
8787export const fetchCache = 'force-cache'
8888
89- // Generate static params for common search/sort combinations
90- export async function generateStaticParams ( ) {
91- // Generate static versions for the most common combinations
92- const commonParams = [
93- { } , // Default: no search, default sort
94- { sort : 'usage' } ,
95- { sort : 'unique_users' } ,
96- { sort : 'newest' } ,
97- { sort : 'name' } ,
98- ]
99-
100- return commonParams
101- }
102-
10389interface StorePageProps {
10490 searchParams : { [ key : string ] : string | string [ ] | undefined }
10591}
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ interface AgentStoreState {
7070}
7171
7272const useAgentStoreState = create < AgentStoreState > ( ( set ) => ( {
73- displayedCount : 0 ,
73+ displayedCount : 24 ,
7474 isLoadingMore : false ,
7575 hasMore : true ,
7676 searchQuery : '' ,
You can’t perform that action at this time.
0 commit comments