From 1d4f91b033b70f6d863698acea8722d7ad8e50b9 Mon Sep 17 00:00:00 2001 From: matthewp Date: Fri, 22 Sep 2023 22:14:57 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/content/runtime.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/astro/src/content/runtime.ts b/packages/astro/src/content/runtime.ts index 2dd80520887d..e507149feaa1 100644 --- a/packages/astro/src/content/runtime.ts +++ b/packages/astro/src/content/runtime.ts @@ -138,11 +138,7 @@ export function createGetEntryBySlug({ }; } -export function createGetDataEntryById({ - getEntryImport, -}: { - getEntryImport: GetEntryImport; -}) { +export function createGetDataEntryById({ getEntryImport }: { getEntryImport: GetEntryImport }) { return async function getDataEntryById(collection: string, id: string) { const lazyImport = await getEntryImport(collection, id);