Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix type
  • Loading branch information
keithamus committed Mar 14, 2024
commit 7a8e239ea4ea40e4450fca93dbe813ef132b95ad
2 changes: 1 addition & 1 deletion packages/react/src/drafts/ActionBar/ActionBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export const ActionBar: React.FC<React.PropsWithChildren<ActionBarProps>> = prop
}, [])

const navRef = useRef<HTMLDivElement>(null)
const listRef = useRef<HTMLElement>(null)
const listRef = useRef<HTMLDivElement>(null)
const moreMenuRef = useRef<HTMLLIElement>(null)
const moreMenuBtnRef = useRef<HTMLButtonElement>(null)
const containerRef = React.useRef<HTMLUListElement>(null)
Expand Down