[ci] format

This commit is contained in:
ematipico 2023-07-18 09:39:12 +00:00 committed by astrobot-houston
parent 06c255716a
commit b3b9fc52b3

View file

@ -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));
}