fix bits which missed the review cutting block

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2019-12-03 10:53:32 +00:00
parent 901e402a5c
commit d3de792f79
3 changed files with 6 additions and 6 deletions

View file

@ -434,7 +434,7 @@ export const aboveLeftOf = (elementRect, chevronFace="none") => {
};
export const useContextMenu = () => {
const _button = useRef(null);
const button = useRef(null);
const [isOpen, setIsOpen] = useState(false);
const open = () => {
setIsOpen(true);
@ -443,7 +443,7 @@ export const useContextMenu = () => {
setIsOpen(false);
};
return [isOpen, _button, open, close, setIsOpen];
return [isOpen, button, open, close, setIsOpen];
};
export default class LegacyContextMenu extends ContextMenu {