File tree 3 files changed +19
-9
lines changed
examples/example-app-router/src
3 files changed +19
-9
lines changed Original file line number Diff line number Diff line change @@ -351,10 +351,13 @@ const router = useRouter();
351
351
const params = useParams();
352
352
353
353
router.replace(
354
- // @ts-expect-error -- TypeScript will validate that only known `params`
355
- // are used in combination with a given `pathname`. Since the two will
356
- // always match for the current route, we can skip runtime checks.
357
- { pathname , params } ,
354
+ {
355
+ pathname ,
356
+ // @ts-expect-error -- TypeScript will validate that only known `params`
357
+ // are used in combination with a given `pathname`. Since the two will
358
+ // always match for the current route, we can skip runtime checks.
359
+ params
360
+ } ,
358
361
{ locale : ' de' }
359
362
);
360
363
```
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import clsx from 'clsx';
4
4
import { useParams } from 'next/navigation' ;
5
5
import { ChangeEvent , ReactNode , useTransition } from 'react' ;
6
6
import { useRouter , usePathname } from '@/navigation' ;
7
+ import { Locale } from '@/types' ;
7
8
8
9
type Props = {
9
10
children : ReactNode ;
@@ -22,13 +23,16 @@ export default function LocaleSwitcherSelect({
22
23
const params = useParams ( ) ;
23
24
24
25
function onSelectChange ( event : ChangeEvent < HTMLSelectElement > ) {
25
- const nextLocale = event . target . value ;
26
+ const nextLocale = event . target . value as Locale ;
26
27
startTransition ( ( ) => {
27
28
router . replace (
28
- // @ts -expect-error -- TypeScript will validate that only known `params`
29
- // are used in combination with a given `pathname`. Since the two will
30
- // always match for the current route, we can skip runtime checks.
31
- { pathname, params} ,
29
+ {
30
+ pathname,
31
+ // @ts -expect-error -- TypeScript will validate that only known `params`
32
+ // are used in combination with a given `pathname`. Since the two will
33
+ // always match for the current route, we can skip runtime checks.
34
+ params
35
+ } ,
32
36
{ locale : nextLocale }
33
37
) ;
34
38
} ) ;
Original file line number Diff line number Diff line change
1
+ import { locales } from './config' ;
2
+
3
+ export type Locale = ( typeof locales ) [ number ] ;
You can’t perform that action at this time.
0 commit comments