[ci] format
This commit is contained in:
parent
06c255716a
commit
b3b9fc52b3
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
import type { GetStaticPathsItem, RouteData, Params } from '../../@types/astro';
|
||||
import type { GetStaticPathsItem, Params, RouteData } from '../../@types/astro';
|
||||
import { validateGetStaticPathsParameter } from './validation.js';
|
||||
|
||||
/**
|
||||
|
@ -36,5 +36,5 @@ export function stringifyParams(params: GetStaticPathsItem['params'], route: Rou
|
|||
return acc;
|
||||
}, {} as Params);
|
||||
|
||||
return JSON.stringify(route.generate(validatedParams))
|
||||
return JSON.stringify(route.generate(validatedParams));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue