From fcb7052bbdba3358b624b341eddbbe83dce83e81 Mon Sep 17 00:00:00 2001
From: 230417 <230417@epvc.pt>
Date: Wed, 18 Mar 2026 12:33:10 +0000
Subject: [PATCH] refactor: Update ActivityIndicator size prop to "small" in
Button component.
---
src/components/ui/Button.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/ui/Button.tsx b/src/components/ui/Button.tsx
index 1e40c18..ab0ac49 100644
--- a/src/components/ui/Button.tsx
+++ b/src/components/ui/Button.tsx
@@ -36,7 +36,7 @@ export const Button = ({ children, onPress, variant = 'solid', size = 'md', disa
activeOpacity={0.7}
>
{loading ? (
-
+
) : (
{children}
)}