@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 +1 -1
- package/src/composeLayout.tsx +1 -3
package/package.json
CHANGED
package/src/composeLayout.tsx
CHANGED
|
@@ -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
|
-
|
|
190
|
-
// @ts-ignore
|
|
191
|
-
return hasInit ? <NavigatorLayout {...props} /> : null
|
|
189
|
+
return <NavigatorLayout {...props} />
|
|
192
190
|
}}
|
|
193
191
|
</Connect>
|
|
194
192
|
</Theme>
|