Skip to content

Commit 49abf64

Browse files
committed
fix eslint
1 parent fbaf546 commit 49abf64

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/components/LabelHelpView/use-label-help.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,13 @@ export const useLabelHelp = () => {
2424
if (labelHelpDisabled || isLabelOnlyMode) return
2525
if (!dataset) return
2626
if (!pricingConfig) loadPricingConfig()
27-
}, [pricingConfig, isLabelOnlyMode, labelHelpDisabled, loadPricingConfig])
27+
}, [
28+
pricingConfig,
29+
isLabelOnlyMode,
30+
labelHelpDisabled,
31+
loadPricingConfig,
32+
dataset,
33+
])
2834

2935
if (!dataset)
3036
return {

src/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React from "react"
22
import ReactDOM from "react-dom"
33
import App from "./App"
4-
import { configure } from "react-hotkeys"
54

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

0 commit comments

Comments
 (0)