mobile: make skip login work properly

This commit is contained in:
Ammar Ahmed
2025-02-18 12:16:27 +05:00
committed by Ammar Ahmed
parent 60ad9801be
commit 956fdd4bc9

View File

@@ -83,7 +83,11 @@ const Auth = ({ navigation, route }) => {
<Button
title={strings.skip()}
onPress={() => {
Navigation.goBack();
if (initialAuthMode.current === 2) {
Navigation.replace("FluidPanelsView");
} else {
Navigation.goBack();
}
}}
iconSize={16}
type="plain"