We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a250e44 commit e91cdc2Copy full SHA for e91cdc2
packages/react-grab/src/core/index.tsx
@@ -2389,7 +2389,9 @@ export const init = (rawOptions?: Options): ReactGrabAPI => {
2389
items: actionCycleItems(),
2390
activeIndex: actionCycleActiveIndex(),
2391
isVisible:
2392
- actionCycleActiveIndex() !== null && actionCycleItems().length > 0,
+ actionCycleActiveIndex() !== null &&
2393
+ actionCycleItems().length > 0 &&
2394
+ !isCommentMode(),
2395
}));
2396
2397
const arrowNavigationItems = createMemo(() =>
0 commit comments