diff --git a/packages/pglite/src/utils.ts b/packages/pglite/src/utils.ts index b22ea2d8..073931bf 100644 --- a/packages/pglite/src/utils.ts +++ b/packages/pglite/src/utils.ts @@ -136,7 +136,7 @@ export async function formatQuery( tx?: Transaction | PGliteInterface, ) { if (Array.isArray(params)) { - params = params.filter(p => typeof p !== "undefined" && p !== null) + params = params.filter((p) => typeof p !== 'undefined' && p !== null) } if (!params?.length) {