diff --git a/src/components/Pressable/GenericPressable/BaseGenericPressable.tsx b/src/components/Pressable/GenericPressable/BaseGenericPressable.tsx index f41a6b389001..1df56093d6a6 100644 --- a/src/components/Pressable/GenericPressable/BaseGenericPressable.tsx +++ b/src/components/Pressable/GenericPressable/BaseGenericPressable.tsx @@ -68,7 +68,7 @@ function GenericPressable( if (shouldUseDisabledCursor) { return styles.cursorDisabled; } - if ([rest.accessibilityRole, rest.role].includes('text')) { + if ([rest.accessibilityRole, rest.role].includes(CONST.ROLE.PRESENTATION)) { return styles.cursorText; } return styles.cursorPointer;