Skip to content

Commit

Permalink
fix: reverting overflow related files in favor of a separate pull req…
Browse files Browse the repository at this point in the history
…uest for easier review
  • Loading branch information
vinnyhoward committed Oct 16, 2024
1 parent f0082c7 commit 971860c
Show file tree
Hide file tree
Showing 15 changed files with 2,328 additions and 3,280 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,6 @@ export interface CellBaseProps {
* Optional prop to control the style of the CellBase.
*/
style?: StyleProp<ViewStyle> | undefined;
/**
* Optional right accessory that can be inserted on the right of Cell Account.
*/
rightAccessory?: React.ReactNode;
/**
* Optional callback function to handle right accessory press.
*/
onRightAccessoryPress?: () => void;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ const CellSelect = ({
tagLabel,
isSelected = false,
children,
rightAccessory,
onRightAccessoryPress,
...props
}: CellSelectProps) => {
const { styles } = useStyles(styleSheet, { style });
Expand All @@ -33,7 +31,6 @@ const CellSelect = ({
isSelected={isSelected}
style={styles.base}
testID={CellModalSelectorsIDs.SELECT}
rightAccessory={rightAccessory}
{...props}
>
<CellBase
Expand Down
Loading

0 comments on commit 971860c

Please sign in to comment.