Skip to content

Commit

Permalink
Fix lint/conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettjstevens committed Jan 8, 2025
1 parent 7dd08c1 commit 9b6b95b
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export function baseModelFactory(
},
}))
.views((self) => {
const { trackMenuItems: superTrackMenuItems } = self
const { filteredFeatureTypes, trackMenuItems: superTrackMenuItems } = self
return {
trackMenuItems() {
const { graphical, table } = self
Expand Down Expand Up @@ -217,8 +217,7 @@ export function baseModelFactory(
handleClose: () => {
doneCallback()
},
// eslint-disable-next-line unicorn/consistent-destructuring
featureTypes: getSnapshot(self.filteredFeatureTypes),
featureTypes: getSnapshot(filteredFeatureTypes),
onUpdate: (types: string[]) => {
self.updateFilteredFeatureTypes(types)
},
Expand Down

0 comments on commit 9b6b95b

Please sign in to comment.