diff --git a/components/Button/GoBackButton.tsx b/components/Button/GoBackButton.tsx index 6b313eb..e14a4c9 100644 --- a/components/Button/GoBackButton.tsx +++ b/components/Button/GoBackButton.tsx @@ -2,8 +2,8 @@ import { View, StyleSheet, - TouchableOpacity, GestureResponderEvent, + Pressable, } from "react-native"; import { useNavigation } from "@react-navigation/native"; @@ -25,14 +25,13 @@ export function GoBackButton({ onPress, disable = false }: GoBackButtonProps) { }; return ( - - - - - + + ); }