From 10aca41229764745c68f169797f9440ab3ee82c4 Mon Sep 17 00:00:00 2001 From: Jonathan Powers Date: Mon, 6 Jan 2025 17:24:28 -0500 Subject: [PATCH] feat: update to effect 3.10 (#729) Signed-off-by: Jonathan Powers --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b0273b5..9f9fefa 100644 --- a/README.md +++ b/README.md @@ -670,7 +670,7 @@ const schema = Schema.Struct({ ), }); -type FormData = Schema.Schema.Type; +type FormData = typeof schema.Type; interface Props { onSubmit: (data: FormData) => void;