Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed May 26, 2020
1 parent fbaf546 commit 49abf64
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 7 additions & 1 deletion src/components/LabelHelpView/use-label-help.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ export const useLabelHelp = () => {
if (labelHelpDisabled || isLabelOnlyMode) return
if (!dataset) return
if (!pricingConfig) loadPricingConfig()
}, [pricingConfig, isLabelOnlyMode, labelHelpDisabled, loadPricingConfig])
}, [
pricingConfig,
isLabelOnlyMode,
labelHelpDisabled,
loadPricingConfig,
dataset,
])

if (!dataset)
return {
Expand Down
1 change: 0 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from "react"
import ReactDOM from "react-dom"
import App from "./App"
import { configure } from "react-hotkeys"

ReactDOM.render(<App />, document.getElementById("root"))

0 comments on commit 49abf64

Please sign in to comment.