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
86
86
export const dynamic = 'force-static'
87
87
export const fetchCache = 'force-cache'
88
88
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
-
103
89
interface StorePageProps {
104
90
searchParams : { [ key : string ] : string | string [ ] | undefined }
105
91
}
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ interface AgentStoreState {
70
70
}
71
71
72
72
const useAgentStoreState = create < AgentStoreState > ( ( set ) => ( {
73
- displayedCount : 0 ,
73
+ displayedCount : 24 ,
74
74
isLoadingMore : false ,
75
75
hasMore : true ,
76
76
searchQuery : '' ,
You can’t perform that action at this time.
0 commit comments