MM-28295 Android fix opening sidebar after closing setting screen (#4777)
This commit is contained in:
parent
bd7afae6f0
commit
e40d0e4c8a
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