Skip to content

Commit

Permalink
linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Jun 25, 2023
1 parent d7b8a9d commit deba29d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions webclient/src/components/DetailsInteractiveMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import type { BackgroundLayerSpecification, Coordinates, ImageSource } from "map
import { Map, Marker } from "maplibre-gl";
import { AttributionControl, FullscreenControl, GeolocateControl, NavigationControl } from "maplibre-gl";
import { selectedMap, useDetailsStore } from "@/stores/details";
import { useGlobalStore } from "@/stores/global";
import { nextTick, ref } from "vue";
import { FloorControl } from "@/modules/FloorControl";
import { webglSupport } from "@/composables/webglSupport";
Expand All @@ -12,7 +11,6 @@ const map = ref<Map | undefined>(undefined);
const marker = ref<Marker | undefined>(undefined);
const floorControl = ref<FloorControl>(new FloorControl());
const state = useDetailsStore();
const global = useGlobalStore();
const initialLoaded = ref(false);
Expand Down
4 changes: 1 addition & 3 deletions webclient/src/pages/view/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import DetailsFeedbackButton from "@/components/DetailsFeedbackButton.vue";
import DetailsRoomfinderMap from "@/components/DetailsRoomfinderMap.vue";
//import DetailsFeaturedOverviewSection from "@/components/DetailsFeaturedOverviewSection.vue";
import { useI18n } from "vue-i18n";
import { getLocalStorageWithExpiry, removeLocalStorage } from "@/composables/storage";
import { setDescription, setTitle } from "@/composables/common";
import { useClipboard } from "@vueuse/core";
import { selectedMap, useDetailsStore } from "@/stores/details";
Expand All @@ -19,7 +18,6 @@ import { useRoute } from "vue-router";
import router from "@/router";
import type { components } from "@/api_types";
type DetailsResponse = components["schemas"]["DetailsResponse"];
import type { Coord } from "@/stores/global";
const { t } = useI18n({ inheritLocale: true, useScope: "global" });
Expand Down Expand Up @@ -241,7 +239,7 @@ onMounted(() => {
</div>
</div>
<DetailsInteractiveMap ref="interactiveMap"/>
<DetailsInteractiveMap ref="interactiveMap" />
<DetailsRoomfinderMap ref="roomfinderMap" />
<div class="btn-group btn-group-block">
<button
Expand Down

0 comments on commit deba29d

Please sign in to comment.