Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

STCOR-930 correctly dispatch rtrFlsWarningTimeout #1579

Merged
merged 1 commit into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* Do not store /logout as a "return-to" URL. Refs STCOR-869.
* Add small margin to ensure /authn/logout is called before cookie expires. Refs STCOR-869.
* Wait longer before declaring a rotation request to be stale. Refs STCOR-895.
* Correctly send `rtrFlsWarningTimeout` when dispatching `setRtrFlsWarningTimeout()`. Refs STCOR-930.

## [10.1.1](https://github.com/folio-org/stripes-core/tree/v10.1.1) (2024-03-25)
[Full Changelog](https://github.com/folio-org/stripes-core/compare/v10.1.0...v10.1.1)
Expand Down
4 changes: 2 additions & 2 deletions src/okapiActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,10 @@ function clearRtrTimeout() {
};
}

function setRtrFlsWarningTimeout(rtrFlsTimeout) {
function setRtrFlsWarningTimeout(rtrFlsWarningTimeout) {
return {
type: OKAPI_REDUCER_ACTIONS.SET_RTR_FLS_WARNING_TIMEOUT,
rtrFlsTimeout,
rtrFlsWarningTimeout,
};
}

Expand Down
Loading