Skip to content

Commit

Permalink
Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
aidynoJ committed Oct 2, 2024
1 parent 4ff90e5 commit 9442f86
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
* Add `nl` (Dutch, Flemish) to the supported locales. Refs STCOR-878.
* Include optional okapi interfaces, `consortia`, `roles`, `users-keycloak`. Refs STCOR-889.
* useUserTenantPermissions hook - provide `isFetched` property. Refs STCOR-890.
* Move session timout banner to the bottom of the page. Refs STCOR-883.

## [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
8 changes: 4 additions & 4 deletions src/RootWithIntl.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const RootWithIntl = ({ stripes, token = '', isAuthenticated = false, disableAut
>
<Provider store={connectedStripes.store}>
<Router history={history}>
{ isAuthenticated || token || disableAuth ?
{isAuthenticated || token || disableAuth ?
<>
<MainContainer>
<AppCtxMenuProvider>
Expand All @@ -73,14 +73,14 @@ const RootWithIntl = ({ stripes, token = '', isAuthenticated = false, disableAut
event={events.LOGIN}
stripes={connectedStripes}
/>
{ (typeof connectedStripes.okapi !== 'object' || connectedStripes.discovery.isFinished) && (
{(typeof connectedStripes.okapi !== 'object' || connectedStripes.discovery.isFinished) && (
<ModuleContainer id="content">
<OverlayContainer />
{ connectedStripes.config.useSecureTokens &&
{connectedStripes.config.useSecureTokens &&
createPortal(<SessionEventContainer
history={history}
/>,
document.getElementById('events-container')) }
document.getElementById('events-container'))}
<Switch>
<TitledRoute
name="home"
Expand Down

0 comments on commit 9442f86

Please sign in to comment.