@ionic/react 8.8.1-dev.11773873479.192398dc → 8.8.1-dev.11774029927.130994f5
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/dist/index.js +1 -4
- package/dist/index.js.map +1 -1
- package/dist/types/routing/ViewStacks.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -2570,10 +2570,7 @@ class ViewStacks {
|
|
|
2570
2570
|
}
|
|
2571
2571
|
}
|
|
2572
2572
|
clear(outletId) {
|
|
2573
|
-
|
|
2574
|
-
return setTimeout(() => {
|
|
2575
|
-
delete this.viewStacks[outletId];
|
|
2576
|
-
}, 500);
|
|
2573
|
+
delete this.viewStacks[outletId];
|
|
2577
2574
|
}
|
|
2578
2575
|
getViewItemsForOutlet(outletId) {
|
|
2579
2576
|
return this.viewStacks[outletId] || [];
|