From a9b657b2cd3297acc6101e483484fecd192771d8 Mon Sep 17 00:00:00 2001 From: amitbadala Date: Mon, 6 Nov 2023 11:32:58 +0530 Subject: [PATCH] Add default feature to typescript --- test/with-typescript/src/App.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/with-typescript/src/App.tsx b/test/with-typescript/src/App.tsx index 1f8a4b3fa..c06d3fff7 100644 --- a/test/with-typescript/src/App.tsx +++ b/test/with-typescript/src/App.tsx @@ -339,6 +339,13 @@ function getEmailPasswordConfigs() { signInAndUpFeature: { signInForm: { style: theme.style, + formFields: [ + { + id: "email", + label: "Email", + getDefaultValue: () => "abc@xyz.com", + }, + ], }, signUpForm: { style: theme.style,