From b75e28fb37d36d950269e13feee5e34c97ae0d67 Mon Sep 17 00:00:00 2001 From: Christian Baroni <7061887+christianbaroni@users.noreply.github.com> Date: Tue, 11 Jun 2024 20:02:53 +0000 Subject: [PATCH] Fix iOS chain badge border radius --- src/__swaps__/screens/Swap/components/AnimatedChainImage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__swaps__/screens/Swap/components/AnimatedChainImage.tsx b/src/__swaps__/screens/Swap/components/AnimatedChainImage.tsx index 30b5c1a67e4..aace8d4fc68 100644 --- a/src/__swaps__/screens/Swap/components/AnimatedChainImage.tsx +++ b/src/__swaps__/screens/Swap/components/AnimatedChainImage.tsx @@ -73,7 +73,7 @@ export function AnimatedChainImage({ const base = { source: { ...DEFAULT_FASTER_IMAGE_CONFIG, - borderRadius: IS_ANDROID ? (size / 2) * PIXEL_RATIO : undefined, + borderRadius: IS_ANDROID ? (size / 2) * PIXEL_RATIO : size / 2, url: '', }, };