Skip to content

Commit

Permalink
minor adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbbb committed Dec 19, 2024
1 parent b713e71 commit 69ca2b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useCallback } from 'react';

const AUTOSCROLL_THRESHOLD = 50;
const AUTOSCROLL_MIN_SPEED = 1;
const AUTOSCROLL_MAX_SPEED = 5;
const AUTOSCROLL_MAX_SPEED = 7;
const AUTOSCROLL_THRESHOLD_MAX_DISTANCE = 100;

function easeInOutCubicWorklet(x: number): number {
Expand Down
6 changes: 3 additions & 3 deletions src/screens/change-wallet/components/PinnedWalletsGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { triggerHaptics } from 'react-native-turbo-haptics';
const UNPIN_BADGE_SIZE = 28;
const PINS_PER_ROW = 3;
const GRID_GAP = 26;
const MAX_AVATAR_SIZE = 91;
const MAX_AVATAR_SIZE = 105;

type PinnedWalletsGridProps = {
walletItems: AddressItem[];
Expand Down Expand Up @@ -113,8 +113,8 @@ export function PinnedWalletsGrid({ walletItems, onPress, editMode, menuItems, o
shouldRasterizeIOS
>
<Box
width={{ custom: avatarSize }}
height={{ custom: avatarSize }}
width={avatarSize}
height={avatarSize}
background="surfaceSecondaryElevated"
shadow={
account.isSelected
Expand Down

0 comments on commit 69ca2b4

Please sign in to comment.