From 26c84399dd3e484a22feef7c1e042171542c5dbf Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 3 Feb 2026 01:33:55 +0200 Subject: [PATCH] Add light haptic feedback to Edit Profile button (#9787) https://claude.ai/code/session_018ZjPcCUDPfTjQ5SGac3Zgs Co-authored-by: Claude --- src/screens/Profile/Header/ProfileHeaderStandard.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/screens/Profile/Header/ProfileHeaderStandard.tsx b/src/screens/Profile/Header/ProfileHeaderStandard.tsx index a0344dac42..39e4895ba6 100644 --- a/src/screens/Profile/Header/ProfileHeaderStandard.tsx +++ b/src/screens/Profile/Header/ProfileHeaderStandard.tsx @@ -317,7 +317,10 @@ export function HeaderStandardButtons({ testID="profileHeaderEditProfileButton" size="small" color="secondary" - onPress={editProfileControl.open} + onPress={() => { + playHaptic('Light') + editProfileControl.open() + }} label={_(msg`Edit profile`)}> Edit Profile