Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Sep 29, 2022
1 parent 7a282f8 commit 6ceeac5
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const Chord = observer(function Chord({
feature: Feature,
reg: AnyRegion,
endBlock: AnyRegion,
evt: any,
evt: unknown,
) => void
}) {
// find the blocks that our start and end points belong to
Expand Down Expand Up @@ -144,18 +144,16 @@ const Chord = observer(function Chord({

function StructuralVariantChords(props: {
features: Map<string, Feature>
blocksForRefs: { [key: string]: Block }
radius: number
config: AnyConfigurationModel
displayModel: any
displayModel: { id: string; selectedFeatureId: string }
blockDefinitions: Block[]
bezierRadius: number
selected: boolean
onChordClick: (
feature: Feature,
reg: AnyRegion,
endBlock: AnyRegion,
evt: any,
evt: unknown,
) => void
}) {
const {
Expand Down

0 comments on commit 6ceeac5

Please sign in to comment.