Skip to content

Commit

Permalink
chore: introduce lint failure for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniferarnesen committed Aug 13, 2024
1 parent cd43f5b commit 11dbe3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/datatable/BottomPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import styles from './styles/BottomPanel.module.css'

// Container for DataTable
const BottomPanel = () => {
const dataTableHeight = useSelector((state) => state.ui.dataTableHeight)
const dataTableHeight = useSelector((state => state.ui.dataTableHeight)
const layersPanelOpen = useSelector((state) => state.ui.layersPanelOpen)
const rightPanelOpen = useSelector((state) => state.ui.rightPanelOpen)

const dispatch = useDispatch()
const dispatch = useDispatch()
const { width, height } = useWindowDimensions()
const panelRef = useRef(null)

Expand Down

0 comments on commit 11dbe3e

Please sign in to comment.