Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hvangeffen committed Jan 14, 2025
1 parent 0c96eb6 commit f31a1ed
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/stores/componentSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ export const useComponentSettingsStore = defineStore('componentSettings', {
const baseMap = this.baseMaps.find((b) => b.id === id)
if (baseMap) return baseMap

const defaultBaseMap = DefaultBaseMaps.find((basemap) => basemap.id === id)
const defaultBaseMap = DefaultBaseMaps.find(
(basemap) => basemap.id === id,
)
if (defaultBaseMap) return defaultBaseMap

// FIXME: What to do if the selected base map is not found?
Expand Down

0 comments on commit f31a1ed

Please sign in to comment.