From e6eb4c06098b02b528fe68d9e111a58623ebfca9 Mon Sep 17 00:00:00 2001 From: dukenv0307 Date: Thu, 23 Nov 2023 15:17:46 +0700 Subject: [PATCH] prevent disable cursor when on pressing --- src/components/OptionRow.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/OptionRow.js b/src/components/OptionRow.js index 8afda6c375bb..cb670f3cf6ce 100644 --- a/src/components/OptionRow.js +++ b/src/components/OptionRow.js @@ -186,6 +186,7 @@ function OptionRow(props) { styles.alignItemsCenter, styles.justifyContentBetween, styles.sidebarLink, + !props.isDisabled && styles.cursorPointer, props.shouldDisableRowInnerPadding ? null : styles.sidebarLinkInner, props.optionIsFocused ? styles.sidebarLinkActive : null, props.shouldHaveOptionSeparator && styles.borderTop,