Skip to content

Commit

Permalink
fix(marketplace): Mute console errors part 1
Browse files Browse the repository at this point in the history
  • Loading branch information
jschill committed Dec 14, 2023
1 parent 75ef1ec commit 3071895
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/marketplace/src/components/CustomGoogleMap.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { GOOGLE_MAPS_API_KEY } from "@/config/config";
import { GoogleMap, Marker } from "vue3-google-map";
import { GoogleMap, Marker, MarkerCluster } from "vue3-google-map";
import { ref, watch } from "vue";
export interface CustomGoogleMapProps {
Expand Down
3 changes: 2 additions & 1 deletion frontend/marketplace/src/pages/HomePage.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script setup lang="ts">
import CustomSpinner from "@/components/CustomSpinner.vue";
import AuctionSection from "@/components/AuctionSection.vue";
import HomePageHeroBanner from "@/components/HomePageHeroBanner.vue";
import { DEFAULT_CREDIT_TYPE } from "@/config/config";
Expand Down Expand Up @@ -73,7 +74,7 @@ const handleSearch = (filterValues: any) => {
<CustomSpinner :visible="showSpinner" />
<template v-if="!showSpinner">
<AuctionSection
:auction-array="data?.result?.marketplaceListings?.nodes"
:auction-array="data?.result?.marketplaceListings?.nodes ?? []"
:filter-values="filter"
/>
</template>
Expand Down

0 comments on commit 3071895

Please sign in to comment.