Skip to content

Commit

Permalink
fix var name (#2882)
Browse files Browse the repository at this point in the history
  • Loading branch information
EDsCODE authored Jan 8, 2021
1 parent 43b0972 commit 3b32961
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/src/scenes/paths/Paths.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,7 @@ const DEFAULT_PATHS_ID = 'default_paths'
export function Paths({ dashboardItemId = null, filters = null }) {
const canvas = useRef(null)
const size = useWindowSize()
const { paths, loadedFilter, loadedPathsLoading: pathsLoading } = useValues(
pathsLogic({ dashboardItemId, filters })
)
const { paths, loadedFilter, resultsLoading: pathsLoading } = useValues(pathsLogic({ dashboardItemId, filters }))

const [modalVisible, setModalVisible] = useState(false)
const [event, setEvent] = useState(null)
Expand Down

0 comments on commit 3b32961

Please sign in to comment.