Skip to content

Commit

Permalink
Remove isOpen from map store
Browse files Browse the repository at this point in the history
  • Loading branch information
Siilwyn committed Sep 15, 2023
1 parent 0231163 commit 96f5c53
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/stores/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { defineStore, storeToRefs } from "pinia";
import { Feature, FeatureCollection, Point } from "geojson";
import {GeoJSONSource, LngLatLike, Map} from "mapbox-gl";
import { deferred } from "~/lib/deferred";
import { spaceIsOpen } from "~/lib/filter-spaces";
import { Bounds } from "~/types/Bounds";
import { Space } from "~/types/Space";
import { Occupancy } from "~/types/Filters";
Expand Down Expand Up @@ -38,7 +37,6 @@ export const useMapStore = defineStore("map", () => {
buildingAbbreviation: space.building.abbreviation,
buildingNumber: space.building.number,
buildingOccupancy: space.building.occupancy,
isOpen: true,
...space.facilities,
},
geometry: {
Expand Down

0 comments on commit 96f5c53

Please sign in to comment.