Skip to content

Commit

Permalink
[PLAY-877] RTE Custom Extenion Dropdown Button Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonymig88 committed Jul 15, 2024
1 parent 93377d2 commit 779f22c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const MoreExtensionsDropdown = ({extensions}: any) => {
const [showPopover, setShowPopover] = useState(false)

const handleTogglePopover = () => {
setShowPopover(true)
setShowPopover(!showPopover)
}

const handlePopoverClose = (shouldClosePopover: boolean) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const toolbarDropdownItems = [


const handleTogglePopover = () => {
setShowPopover(true)
setShowPopover(!showPopover)
}

const handlePopoverClose = (shouldClosePopover: boolean) => {
Expand Down

0 comments on commit 779f22c

Please sign in to comment.