Add default response when area name or type is not found.

This commit is contained in:
Spencer Ofwiti 2021-06-30 20:01:18 +03:00
parent 717c8616ae
commit 5fcee3dcf9

View File

@ -35,6 +35,7 @@ export class LocationService {
return queriedAreaName;
}
}
return 'other';
}
getAreaTypes(): void {
@ -54,5 +55,6 @@ export class LocationService {
return queriedAreaType;
}
}
return 'other';
}
}