From abd2c8e6955e48282d860730e083be227b4a24f6 Mon Sep 17 00:00:00 2001 From: Sam Brownstone <37947148+sbsto@users.noreply.github.com> Date: Tue, 18 Jul 2023 23:40:36 +0100 Subject: Fix cursor not being a pointer on profile back button (#1022) * Fix cursor not being a pointer on profile back button * Change TouchableOpacity to Pressable * switch back to TouchableWithoutFeedback --------- Co-authored-by: Ansh Nanda --- src/view/com/profile/ProfileHeader.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/view/com/profile/ProfileHeader.tsx b/src/view/com/profile/ProfileHeader.tsx index 56814fe97..320d8a778 100644 --- a/src/view/com/profile/ProfileHeader.tsx +++ b/src/view/com/profile/ProfileHeader.tsx @@ -541,6 +541,8 @@ const styles = StyleSheet.create({ height: 30, overflow: 'hidden', borderRadius: 15, + // @ts-ignore web only + cursor: 'pointer', }, backBtn: { width: 30, -- cgit 1.4.1