diff --git a/src/navigations/AppMainStackNavigator.tsx b/src/navigations/AppMainStackNavigator.tsx index 22086b3..b31bd13 100644 --- a/src/navigations/AppMainStackNavigator.tsx +++ b/src/navigations/AppMainStackNavigator.tsx @@ -1,5 +1,6 @@ import { createNativeStackNavigator } from "@react-navigation/native-stack"; import HomeUserNotLoggedIn from "@screens/HomeUserNotLoggedIn"; +import PaymentResultScreen from "@screens/PaymentResultScreen"; import UserLoginScreen from "@screens/UserLoginScreen"; import { AppBottomTabsNavigator } from "./AppBottomTabsNavigator"; import type { ImainStackNavigator } from "./Types"; @@ -15,6 +16,7 @@ const AppMainStackNavigator = () => { + ); }; diff --git a/src/navigations/PaymentStackNavigation.tsx b/src/navigations/PaymentStackNavigation.tsx index a5aee6a..356a698 100644 --- a/src/navigations/PaymentStackNavigation.tsx +++ b/src/navigations/PaymentStackNavigation.tsx @@ -2,7 +2,6 @@ import { createNativeStackNavigator } from "@react-navigation/native-stack"; import HomePageWithPaymentOptions from "@screens/HomePageWithPaymentOptions"; import NumberAndOtpForPaymentScreen from "@screens/NumberAndOtpForPaymentScreen"; import PaymentAmountInputScreen from "@screens/PaymentAmountInputScreen"; -import PaymentResultScreen from "@screens/PaymentResultScreen"; import type { IpaymentStackNavigator } from "./Types"; const Stack = createNativeStackNavigator(); @@ -22,13 +21,6 @@ const PaymentStackNavigator = () => { component={NumberAndOtpForPaymentScreen} /> - ); };