Minor fixes (#758)

This commit is contained in:
Lucas Bordeau
2023-07-19 11:22:51 -07:00
committed by GitHub
parent 3ed4e7d0d9
commit 16aa507d50
2 changed files with 3 additions and 3 deletions
@@ -28,8 +28,8 @@ export function useOpenCreateCommentThreadDrawerForSelectedRowIds() {
const [, setViewableCommentThreadId] = useRecoilState(
viewableCommentThreadIdState,
);
const setHotkeyScope = useSetHotkeyScope();
setHotkeyScope(RightDrawerHotkeyScope.RightDrawer, { goto: false });
const [, setCommentableEntityArray] = useRecoilState(
commentableEntityArrayState,
@@ -42,9 +42,9 @@ export function DropdownMenuCheckableItem({
}
return (
<DropdownMenuCheckableItemContainer>
<DropdownMenuCheckableItemContainer onClick={handleClick}>
<StyledLeftContainer>
<Checkbox checked={checked} onChange={handleClick} />
<Checkbox checked={checked} />
<StyledChildrenContainer>{children}</StyledChildrenContainer>
</StyledLeftContainer>
</DropdownMenuCheckableItemContainer>