Skip to content

Commit d36515f

Browse files
fix: remove funcformat fields from FuncCall transformations - PG14 expects them absent
Co-Authored-By: Dan Lynch <[email protected]>
1 parent 69b12c6 commit d36515f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/transform/src/transformers/v13-to-v14.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,10 @@ export class V13ToV14Transformer {
155155
result.location = node.location;
156156
}
157157

158+
if (result.funcformat !== undefined) {
159+
delete result.funcformat;
160+
}
161+
158162
return { FuncCall: result };
159163
}
160164

0 commit comments

Comments
 (0)