Fix: Back button not showing on ObsEdit (#3101)

This commit is contained in:
Johannes Klein
2025-09-08 14:24:08 +02:00
committed by GitHub
parent fc16b91ded
commit cb32bcddca

View File

@@ -51,6 +51,7 @@ const BackButton = ( {
}: Props ) => {
const { isRTL } = I18nManager;
const navigation = useNavigation();
const canGoBack = navigation?.canGoBack( );
const tintColor = color || colors.darkGray;
const { t } = useTranslation( );
@@ -73,7 +74,7 @@ const BackButton = ( {
/>
);
if ( navigation?.canGoBack( ) ) {
if ( onPress || canGoBack ) {
return (
<HeaderBackButton
backImage={backImage}