Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Eng-Elias committed Dec 18, 2023
1 parent b136c6d commit dad62ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/EventHandler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export interface EventsHandlerProps {
selectAllEvent: (e: React.KeyboardEvent<HTMLElement>) => boolean;
selection: Selection;
seq: string;
setSelection: (selection: Selection) => void;
setLinearZoom: (zoom: number) => void;
setSelection: (selection: Selection) => void;
zoom: number;
}

Expand Down
2 changes: 1 addition & 1 deletion src/SeqViewerContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ class SeqViewerContainer extends React.Component<SeqViewerContainerProps, SeqVie
selectAllEvent={this.props.selectAllEvent}
selection={mergedSelection}
seq={seq}
setSelection={this.setSelection}
setLinearZoom={setLinearZoom}
setSelection={this.setSelection}
zoom={zoom.linear}
>
{this.props.children ? (
Expand Down

0 comments on commit dad62ff

Please sign in to comment.