Skip to content

Commit

Permalink
Reorder params
Browse files Browse the repository at this point in the history
  • Loading branch information
decs committed Mar 2, 2024
1 parent 75dd140 commit 3b47dbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/effect/src/__tests__/effect.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ const readonly = <A extends Record<string, unknown>>(a: A): Readonly<A> => a;

const DateFromString = S.DateFromString.pipe(
S.jsonSchema({
type: 'string',
description: 'an ISO-date string',
title: 'ISOString',
format: 'date-time',
title: 'ISOString',
type: 'string',
}),
);

Expand Down

0 comments on commit 3b47dbe

Please sign in to comment.