Skip to content

Commit 7acf470

Browse files
committed
DPP-89: Fixed button enable in info request page when all fields are already filled
1 parent 25448c0 commit 7acf470

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/oid4vci-demo-frontend/src/components/Form

packages/oid4vci-demo-frontend/src/components/Form/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const Form: FC<Props> = (props: Props): ReactElement => {
8686
}
8787

8888
useEffect((): void => {
89-
if (onChange && formInitData) {
89+
if (onChange && formInitData) { // Update host form to update enable nxt button
9090
onChange(formData)
9191
}
9292
})

0 commit comments

Comments
 (0)