Type fixes

This commit is contained in:
zomars 2022-03-01 18:17:01 -07:00
parent 10dde1bbf3
commit 4f6612f48c

View File

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