From a0c2bc982c67bd42fa180f925c4b216e8a23d261 Mon Sep 17 00:00:00 2001 From: Danny Ricciotti Date: Wed, 30 Apr 2025 21:56:11 -0400 Subject: [PATCH] Fix: Update to use TextStyle instead of ViewStyle --- boilerplate/app/components/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boilerplate/app/components/Button.tsx b/boilerplate/app/components/Button.tsx index 2c97647f2..d2d9e264d 100644 --- a/boilerplate/app/components/Button.tsx +++ b/boilerplate/app/components/Button.tsx @@ -239,7 +239,7 @@ const $pressedViewPresets: Record> = { reversed: ({ colors }) => ({ backgroundColor: colors.palette.neutral700 }), } -const $pressedTextPresets: Record> = { +const $pressedTextPresets: Record> = { default: () => ({ opacity: 0.9 }), filled: () => ({ opacity: 0.9 }), reversed: () => ({ opacity: 0.9 }),