@ledvance/base 1.1.5 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "@ledvance/base",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.1.5",
7
+ "version": "1.1.6",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@reduxjs/toolkit": "^1.8.6",
@@ -186,9 +186,7 @@ const composeLayout = (component: React.ComponentType) => {
186
186
  <Theme theme={theme}>
187
187
  <Connect mapStateToProps={_.identity}>
188
188
  {({mapStateToProps, ...props}: { mapStateToProps: any; [_: string]: any }) => {
189
- const hasInit = Object.keys(props.dpState).length > 0
190
- // @ts-ignore
191
- return hasInit ? <NavigatorLayout {...props} /> : null
189
+ return <NavigatorLayout {...props} />
192
190
  }}
193
191
  </Connect>
194
192
  </Theme>