Skip to content

Commit

Permalink
v1.31.2 (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
moust authored Jan 14, 2025
1 parent 34c8957 commit a860292
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.31.2] - 2025-01-14

### Fixed

- Fix form error handler

## [1.31.1] - 2025-01-10

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

First version of the SDK Web UI.

[Unreleased]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.31.1...HEAD
[Unreleased]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.31.2...HEAD

[1.31.2]: https://github.com/ReachFive/identity-web-ui-sdk/compare/v1.31.1...v1.31.2

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

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reachfive/identity-ui",
"version": "1.31.1",
"version": "1.31.2",
"description": "ReachFive Identity Web UI SDK",
"author": "ReachFive",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/form/formComponent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export function createForm(config) {
};

onError = err => {
this.props.onError.onError?.(err);
this.props.onError?.(err);

if (!err.errorUserMsg) {
if (err.errorDescription) {
Expand Down
4 changes: 2 additions & 2 deletions types/identity-ui.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @reachfive/identity-ui - v1.31.0
* Compiled Fri, 10 Jan 2025 18:54:24 UTC
* @reachfive/identity-ui - v1.31.2
* Compiled Tue, 14 Jan 2025 13:12:56 UTC
*
* Copyright (c) ReachFive.
*
Expand Down

0 comments on commit a860292

Please sign in to comment.