File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
(con)/[locale]/con/[edition]/conferences/[slug] Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export async function generateStaticParams({
57
57
} : {
58
58
params : { edition : string ; locale : Locale } ;
59
59
} ) {
60
- const slugs = await getAllConferenceSlugs ( edition , locale ) ;
60
+ const slugs = await getAllConferenceSlugs ( edition ) ;
61
61
62
62
return slugs . map ( ( slug : string ) => ( {
63
63
slug,
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ async function getAllConRoutes() {
46
46
createLocalePath ( locale , `con/${ edition } /speakers/${ speaker } ` )
47
47
) ;
48
48
49
- const conferences = await getAllConferenceSlugs ( edition , locale ) ;
49
+ const conferences = await getAllConferenceSlugs ( edition ) ;
50
50
for ( const conference of conferences )
51
51
routes . push (
52
52
createLocalePath ( locale , `con/${ edition } /conferences/${ conference } ` )
You can’t perform that action at this time.
0 commit comments