Use else if

Maybe it looks a little nicer, I don't know

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-03-26 13:52:41 +01:00
parent a707524aad
commit d68afcc4ce
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 8 additions and 10 deletions

View File

@ -123,17 +123,15 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
action: "view_room", action: "view_room",
room_id: roomId, room_id: roomId,
}); });
} else if (space) {
defaultDispatcher.dispatch({
action: "view_room",
room_id: space.roomId,
});
} else { } else {
if (space) { defaultDispatcher.dispatch({
defaultDispatcher.dispatch({ action: "view_home_page",
action: "view_room", });
room_id: space.roomId,
});
} else {
defaultDispatcher.dispatch({
action: "view_home_page",
});
}
} }
// persist space selected // persist space selected