File tree 1 file changed +3
-2
lines changed
src/app/(public)/repos/[language]/_components
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ enum SortTypes {
23
23
export function Sorter ( ) {
24
24
const searchParams = useSearchParams ( ) ;
25
25
const pathname = usePathname ( ) ;
26
+ const urlSearchParam = new URLSearchParams ( searchParams ) ;
26
27
27
28
const navigationItems = [
28
29
{
@@ -129,7 +130,7 @@ export function Sorter() {
129
130
< ul tabIndex = { 0 } className = "menu menu-vertical" >
130
131
{ mainLanguages . sort ( sortByName ) . map ( language => (
131
132
< li key = { language } onClick = { handleClick } >
132
- < Link href = { `/repos/${ language . toLowerCase ( ) } ` } >
133
+ < Link href = { `/repos/${ language . toLowerCase ( ) } ? ${ urlSearchParam . toString ( ) } ` } >
133
134
{ language }
134
135
</ Link >
135
136
</ li >
@@ -148,7 +149,7 @@ export function Sorter() {
148
149
< div className = "z-50 h-64 p-2 overflow-y-scroll shadow dropdown-content hidden group-hover:block -ml-16 bg-base-100 rounded-box w-60" >
149
150
< ul tabIndex = { 0 } className = "menu menu-vertical" >
150
151
{ navigationItems . map ( ( item , index ) => {
151
- const sp = item . onSelect ( new URLSearchParams ( searchParams ) ) ;
152
+ const sp = item . onSelect ( urlSearchParam ) ;
152
153
if ( item . name === SortTypes . BestMatch ) {
153
154
sp . delete ( 'o' ) ;
154
155
sp . delete ( 's' ) ;
You can’t perform that action at this time.
0 commit comments