Skip to content

Commit

Permalink
fix: missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
davwheat committed Jan 9, 2024
1 parent 1446931 commit 88a7c8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Maps/UkCoverageMap/Providers/VFProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import VodafoneLogo from '@assets/icons/brands/vodafone.inline.svg'

export default class VodafoneCoverageMapProvider extends CoverageProvider<true> {
providerName: string = 'Vodafone'
defaultLayerIndex: number = this._getLayers().findIndex(layer => layer.label === '4G')
defaultLayerIndex: number = this._getLayers(this.version).findIndex(layer => layer.label === '4G')
supportsSites: boolean = false
readonly supportsVersionHistory = true
readonly maxZoom = 14
Expand Down

0 comments on commit 88a7c8e

Please sign in to comment.