Skip to content

Commit

Permalink
fix: undo unnecessary
Browse files Browse the repository at this point in the history
  • Loading branch information
kathaypacific committed Jul 9, 2024
1 parent cb9578b commit efed9f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/BorderlessButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export type Props = Omit<TouchableProps, 'style'> & {
export default function BorderlessButton(props: Props) {
const { style, containerStyle, children, notScaleFont, ...passThroughProps } = props
return (
<Touchable borderless={true} {...passThroughProps} style={containerStyle}>
<Touchable {...passThroughProps} borderless={true} style={containerStyle}>
{notScaleFont ? (
<Text allowFontScaling={false} style={style}>
{children}
Expand Down

0 comments on commit efed9f8

Please sign in to comment.