Skip to content

Commit

Permalink
undefined missing check added
Browse files Browse the repository at this point in the history
Signed-off-by: AadeshNichite <anichite@progress.com>
  • Loading branch information
AadeshNichite committed Sep 1, 2023
1 parent 79694d8 commit 8f4fc76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class MfeSessionService implements CanActivate {

map_url = JSON.parse(map_url);

if(map_url[state.url]){
if(map_url && map_url[state.url]){
window.location.href = map_url[state.url];
flag = false;
}
Expand Down

0 comments on commit 8f4fc76

Please sign in to comment.