@conform-to/yup
Advanced tools
Comparing version 0.7.2 to 0.7.3
@@ -6,3 +6,3 @@ { | ||
"license": "MIT", | ||
"version": "0.7.2", | ||
"version": "0.7.3", | ||
"main": "index.js", | ||
@@ -29,3 +29,3 @@ "module": "index.mjs", | ||
"peerDependencies": { | ||
"@conform-to/dom": "0.7.2", | ||
"@conform-to/dom": "0.7.3", | ||
"yup": ">=0.32.0" | ||
@@ -32,0 +32,0 @@ }, |
@@ -76,3 +76,3 @@ # @conform-to/yup | ||
export let action = async ({ request }) => { | ||
export async function action({ request }) { | ||
const formData = await request.formData(); | ||
@@ -92,3 +92,3 @@ const submission = parse(formData, { | ||
// ... | ||
}; | ||
} | ||
``` |
14635