Skip to content

Commit

Permalink
chore: introduce lint failure for testing 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniferarnesen committed Aug 13, 2024
1 parent 11dbe3e commit 620888e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/datatable/BottomPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ 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 { width, height } = useWindowDimensions()
const { width, height } =
useWindowDimensions()
const panelRef = useRef(null)

const onResize = useCallback(
Expand Down

0 comments on commit 620888e

Please sign in to comment.