@linzjs/windows 7.1.0 → 7.1.1

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.
@@ -107,7 +107,7 @@ export const Panel = (props: PanelProps): ReactElement => {
107
107
  }, []);
108
108
 
109
109
  const [panelSize, _setPanelSize] = useState<NumberSize>(() => {
110
- if (savedState?.panelSize) {
110
+ if (!ignoreSavedState && savedState?.panelSize) {
111
111
  return cropSizeToWindow(savedState.panelSize);
112
112
  }
113
113
 
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "popout"
14
14
  ],
15
15
  "main": "./dist/index.ts",
16
- "version": "7.1.0",
16
+ "version": "7.1.1",
17
17
  "peerDependencies": {
18
18
  "@linzjs/lui": ">=21",
19
19
  "lodash-es": ">=4",