Skip to content

Commit d597cbe

Browse files
committed
linting
1 parent f7603b3 commit d597cbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1835,7 +1835,7 @@ export const ElicitResultSchema = ResultSchema.extend({
18351835
* We normalize null to undefined for leniency while maintaining type compatibility.
18361836
*/
18371837
content: z.preprocess(
1838-
(val) => (val === null ? undefined : val),
1838+
val => (val === null ? undefined : val),
18391839
z.record(z.string(), z.union([z.string(), z.number(), z.boolean(), z.array(z.string())])).optional()
18401840
)
18411841
});

0 commit comments

Comments
 (0)