File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -101,9 +101,8 @@ function App(props: AppProps) {
101101 // In iOS: application:didFinishLaunchingWithOptions:
102102 // In Android: https://stackoverflow.com/a/45838109/204044
103103 // You can replace with your own loading component if you wish.
104- // @mst replace-next-line if (!isNavigationStateRestored || (!areFontsLoaded && !fontLoadError)) {
105104 if (
106- ! rehydrated ||
105+ ! rehydrated || // @mst remove-current-line
107106 ! isNavigationStateRestored ||
108107 ! isI18nInitialized ||
109108 ( ! areFontsLoaded && ! fontLoadError )
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ interface WelcomeScreenProps extends AppStackScreenProps<"Welcome"> {}
2121
2222// @mst replace-next-line export const WelcomeScreen: FC<WelcomeScreenProps> = (
2323export const WelcomeScreen : FC < WelcomeScreenProps > = observer (
24- function WelcomeScreen (
24+ function WelcomeScreen ( // @mst remove-current-line
2525 _props , // @demo remove-current-line
2626 // @mst replace-next-line ) => {
2727 ) {
@@ -81,7 +81,7 @@ export const WelcomeScreen: FC<WelcomeScreenProps> = observer(
8181 )
8282 // @mst replace-next-line }
8383 } ,
84- )
84+ ) // @mst remove-current-line
8585
8686const $topContainer : ThemedStyle < ViewStyle > = ( { spacing } ) => ( {
8787 flexShrink : 1 ,
You can’t perform that action at this time.
0 commit comments