Skip to content

Commit

Permalink
Misc lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Aug 1, 2024
1 parent f58b5bc commit 06fcf0b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/product-core/src/ui/RefNameInfoDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
AnyConfigurationModel,
} from '@jbrowse/core/configuration'
import { Dialog, LoadingEllipses } from '@jbrowse/core/ui'
import { AbstractSessionModel, getSession } from '@jbrowse/core/util'
import { AbstractSessionModel } from '@jbrowse/core/util'
import { getConfAssemblyNames } from '@jbrowse/core/util/tracks'
import { observer } from 'mobx-react'
import { makeStyles } from 'tss-react/mui'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,17 @@ import {
cast,
getParent,
getPath,
getRoot,
resolveIdentifier,
types,
Instance,
SnapshotIn,
} from 'mobx-state-tree'
import { autorun, transaction } from 'mobx'
import { autorun } from 'mobx'

// jbrowse
import BaseViewModel from '@jbrowse/core/pluggableElementTypes/models/BaseViewModel'
import { MenuItem } from '@jbrowse/core/ui'
import { getSession, isSessionModelWithWidgets, avg } from '@jbrowse/core/util'
import PluginManager from '@jbrowse/core/PluginManager'
import { AnyConfigurationModel } from '@jbrowse/core/configuration'
import { ElementId } from '@jbrowse/core/util/types/mst'
import {
LinearGenomeViewModel,
Expand Down
6 changes: 2 additions & 4 deletions plugins/linear-genome-view/src/LinearGenomeView/model.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { lazy } from 'react'
import { getConf, AnyConfigurationModel } from '@jbrowse/core/configuration'
import { getConf } from '@jbrowse/core/configuration'
import { BaseViewModel } from '@jbrowse/core/pluggableElementTypes/models'
import { Region } from '@jbrowse/core/util/types'
import { ElementId } from '@jbrowse/core/util/types/mst'
Expand Down Expand Up @@ -31,13 +31,11 @@ import {
showTrackGeneric,
toggleTrackGeneric,
} from '@jbrowse/core/util/tracks'
import { when, transaction, autorun } from 'mobx'
import { when, autorun } from 'mobx'
import {
addDisposer,
cast,
getSnapshot,
getRoot,
resolveIdentifier,
types,
Instance,
getParent,
Expand Down

0 comments on commit 06fcf0b

Please sign in to comment.