Skip to content

Commit

Permalink
fix: requested fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciej Makowski committed Dec 10, 2024
1 parent e629adf commit c64537a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/common-app/src/components/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ const Button: FC<ButtonProps> = ({
}) => {
return (
<Pressable
onPress={disabled ? undefined : onPress}
disabled={disabled}
onPress={onPress}
style={({ pressed }) => [
styles.button,
{
Expand Down

0 comments on commit c64537a

Please sign in to comment.