File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,8 +29,7 @@ export const jsonSuccess = <T, S extends ContentfulStatusCode>(
2929 c : Context < AppContext > ,
3030 statusCode : S ,
3131 data : T ,
32- ) =>
33- c . json ( success ( data , buildMeta ( c ) ) , statusCode ) ;
32+ ) => c . json ( success ( data , buildMeta ( c ) ) , statusCode ) ;
3433
3534export const jsonError = < S extends ContentfulStatusCode > (
3635 c : Context < AppContext > ,
Original file line number Diff line number Diff line change @@ -184,7 +184,10 @@ export function HeaderMenu({
184184 ? pathname === '/'
185185 : pathname === item . href || pathname ?. startsWith ( `${ item . href } /` ) ;
186186
187- const itemClassName = cn ( 'header-menu-link' , isActive && 'header-menu-link--active' ) ;
187+ const itemClassName = cn (
188+ 'header-menu-link' ,
189+ isActive && 'header-menu-link--active' ,
190+ ) ;
188191 const itemContent = (
189192 < >
190193 < span className = "flex items-center gap-3" >
You can’t perform that action at this time.
0 commit comments