Skip to content

Commit a860292

Browse files
authored
v1.31.2 (#250)
1 parent 34c8957 commit a860292

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [1.31.2] - 2025-01-14
11+
12+
### Fixed
13+
14+
- Fix form error handler
15+
1016
## [1.31.1] - 2025-01-10
1117

1218
### Fixed
@@ -530,7 +536,9 @@ The eye icon is now correctly displayed in the Auth widget.
530536

531537
First version of the SDK Web UI.
532538

533-
[Unreleased]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.31.1...HEAD
539+
[Unreleased]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.31.2...HEAD
540+
541+
[1.31.2]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.31.1...v1.31.2
534542

535543
[1.31.1]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.31.0...v1.31.1
536544

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@reachfive/identity-ui",
3-
"version": "1.31.1",
3+
"version": "1.31.2",
44
"description": "ReachFive Identity Web UI SDK",
55
"author": "ReachFive",
66
"repository": {

src/components/form/formComponent.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export function createForm(config) {
158158
};
159159

160160
onError = err => {
161-
this.props.onError.onError?.(err);
161+
this.props.onError?.(err);
162162

163163
if (!err.errorUserMsg) {
164164
if (err.errorDescription) {

types/identity-ui.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* @reachfive/identity-ui - v1.31.0
3-
* Compiled Fri, 10 Jan 2025 18:54:24 UTC
2+
* @reachfive/identity-ui - v1.31.2
3+
* Compiled Tue, 14 Jan 2025 13:12:56 UTC
44
*
55
* Copyright (c) ReachFive.
66
*

0 commit comments

Comments
 (0)