Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie committed Dec 8, 2023
1 parent 4d0e1da commit afb5bf8
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions graphile-build/graphile-build-pg/src/plugins/PgCodecsPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,17 @@ export const PgCodecsPlugin: GraphileConfig.Plugin = {
extensions,
});
return EXPORTABLE(
(description, extensions, info, innerCodec, listOfCodec, serviceName, type, typeDelim) => listOfCodec(innerCodec, {
(
description,
extensions,
info,
innerCodec,
listOfCodec,
serviceName,
type,
typeDelim,
) =>
listOfCodec(innerCodec, {
extensions,
typeDelim,
description,
Expand All @@ -789,7 +799,16 @@ export const PgCodecsPlugin: GraphileConfig.Plugin = {
serviceName,
}),
}),
[description, extensions, info, innerCodec, listOfCodec, serviceName, type, typeDelim],
[
description,
extensions,
info,
innerCodec,
listOfCodec,
serviceName,
type,
typeDelim,
],
);
}
}
Expand Down

0 comments on commit afb5bf8

Please sign in to comment.