Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
walmat committed Jan 6, 2025
1 parent 0783d5d commit 4244e66
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/DropdownMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const DropdownMenuTrigger = DropdownMenuPrimitive.create<ExtendedDropdown
(props: ExtendedDropdownMenuTriggerProps) => {
// TODO: This hitslop isn't working properly...
return (
<DropdownMenuPrimitive.Trigger {...props} style={[props.style, { padding: props.hitSlop ?? 0 }]}>
<DropdownMenuPrimitive.Trigger {...props} style={[props.style]}>
<ButtonPressAnimation testID={props.testID}>
<HitSlop space={{ custom: props.hitSlop ?? 0 }}>{props.children}</HitSlop>
</ButtonPressAnimation>
Expand Down
2 changes: 0 additions & 2 deletions src/components/ExchangeTokenRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ export default React.memo(function ExchangeTokenRow({

const isInfoButtonVisible = !item?.isNativeAsset || (!isNativeAsset(address ?? item?.address, chainId) && !showBalance);

console.log('chainId', chainId);

return (
<Columns alignVertical="center" space="10px">
<Column>
Expand Down

0 comments on commit 4244e66

Please sign in to comment.