Type fixes

pull/2038/head
zomars 2022-03-01 18:17:01 -07:00
parent 10dde1bbf3
commit 4f6612f48c
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ export function getLocationOptions() {
]; ];
Object.values(appStore).forEach((app) => { Object.values(appStore).forEach((app) => {
if ("locationOption" in app.lib) { if ("lib" in app && "locationOption" in app.lib) {
defaultLocations.push(app.lib.locationOption); defaultLocations.push(app.lib.locationOption);
} }
}); });