(cherry picked from commit e40d0e4c8a)
Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
This commit is contained in:
parent
b51f7a0bb2
commit
c11b92b64e
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ class EphemeralStore {
|
|||
|
||||
removeNavigationComponentId = (componentId) => {
|
||||
const index = this.navigationComponentIdStack.indexOf(componentId);
|
||||
if (index >= 0) {
|
||||
if (index > 0) {
|
||||
this.navigationComponentIdStack.splice(index, 1);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue