Skip to content

Commit

Permalink
Linter run
Browse files Browse the repository at this point in the history
  • Loading branch information
guzmanvig committed Feb 14, 2024
1 parent b984f49 commit 8d40d64
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/SeqViewerContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,7 @@ class SeqViewerContainer extends React.Component<SeqViewerContainerProps, SeqVie
/**
* Returns the selection that was either a prop (optional) or the selection maintained in state.
*/
getSelection = (
state: Selection,
prop?: Selection
): Selection => {
getSelection = (state: Selection, prop?: Selection): Selection => {
if (prop) {
return { ...prop, clockwise: typeof prop.clockwise === "undefined" || !!prop.clockwise, type: "" };
}
Expand Down

0 comments on commit 8d40d64

Please sign in to comment.