From 4c9a8f29b1fb609e18bcb3153d90ae28f59a427b Mon Sep 17 00:00:00 2001 From: Asim Date: Tue, 24 Dec 2024 13:50:27 +0500 Subject: [PATCH] chore(react-aria): changed default value hint for Checkbox value prop GitOrigin-RevId: 35b17e1fcdff8b64635db107518e27df1d9fe563 --- plasmicpkgs/react-aria/src/registerCheckbox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plasmicpkgs/react-aria/src/registerCheckbox.tsx b/plasmicpkgs/react-aria/src/registerCheckbox.tsx index 0481ce32ac5..140020aa755 100644 --- a/plasmicpkgs/react-aria/src/registerCheckbox.tsx +++ b/plasmicpkgs/react-aria/src/registerCheckbox.tsx @@ -212,7 +212,7 @@ export function registerCheckbox( type: "string", description: 'The value of the checkbox in "selected" state, used when submitting an HTML form.', - defaultValueHint: "on", + defaultValueHint: 'Checked value (default: "on")', validator: (_value, _props, ctx) => { if (ctx?.idError) { return ctx.idError;