From 7d334e0f0e1e35ed80ed9a34841e0a001b05ffe5 Mon Sep 17 00:00:00 2001 From: Mykhailo Kravchenko Date: Mon, 3 Jun 2024 13:49:38 +0200 Subject: [PATCH] add empty-lines --- src/libs/Navigation/AppNavigator/index.native.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libs/Navigation/AppNavigator/index.native.tsx b/src/libs/Navigation/AppNavigator/index.native.tsx index c0d56eaec663..f740f9eb5b94 100644 --- a/src/libs/Navigation/AppNavigator/index.native.tsx +++ b/src/libs/Navigation/AppNavigator/index.native.tsx @@ -27,9 +27,12 @@ function AppNavigator({authenticated}: AppNavigatorProps) { // These are the protected screens and only accessible when an authToken is present return ; } + const PublicScreens = require('./PublicScreens').default; + return ; } AppNavigator.displayName = 'AppNavigator'; + export default memo(AppNavigator);