From 1fab6e8b9409db6b52f71dee4edddc249e73fbce Mon Sep 17 00:00:00 2001 From: Brion Date: Fri, 14 Nov 2025 19:15:45 +0530 Subject: [PATCH 1/2] fix: passwords still having `text` type --- .../react/src/components/presentation/SignUp/transformer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/src/components/presentation/SignUp/transformer.ts b/packages/react/src/components/presentation/SignUp/transformer.ts index 362f4d6d..544eb25c 100644 --- a/packages/react/src/components/presentation/SignUp/transformer.ts +++ b/packages/react/src/components/presentation/SignUp/transformer.ts @@ -117,7 +117,7 @@ const convertSimpleInputToComponent = ( type: EmbeddedFlowComponentType.Input, variant, config: { - type: input.type, + type: fieldType, label, placeholder, required: input.required as boolean, From 0a65c1fdb5084c5670d2ad0729a26f8adcdcbf8c Mon Sep 17 00:00:00 2001 From: Brion Date: Fri, 14 Nov 2025 19:16:15 +0530 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20add=20changeset=20=F0=9F=A6=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/fair-apples-cough.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fair-apples-cough.md diff --git a/.changeset/fair-apples-cough.md b/.changeset/fair-apples-cough.md new file mode 100644 index 00000000..d16864a6 --- /dev/null +++ b/.changeset/fair-apples-cough.md @@ -0,0 +1,5 @@ +--- +'@asgardeo/react': patch +--- + +Fix passwords still having `text` type