Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
moved the qr-onboarding to be outside the qr scanning navigator (#1595)
Browse files Browse the repository at this point in the history
  • Loading branch information
smcmurtry authored May 10, 2021
1 parent 7bf4142 commit 140cbef
Show file tree
Hide file tree
Showing 9 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/navigation/MainNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {StatusBar} from 'react-native';
import {createStackNavigator} from '@react-navigation/stack';
import {HomeScreen} from 'screens/home';
import {TutorialScreen} from 'screens/tutorial';
import {QRCodeOnboardScreen} from 'screens/qr/onboarding/Tutorial';
import {QRCodeOnboardScreen} from 'screens/qr-onboarding/Tutorial';
import {
FormScreen,
Step0Screen,
Expand Down Expand Up @@ -163,7 +163,6 @@ const QRCodeNavigator = () => {
<QRCodeStack.Screen name="InvalidQRCodeScreen" component={InvalidQRCodeScreenWithNavBar} />
<QRCodeStack.Screen name="CheckInSuccessfulScreen" component={CheckInSuccessfulScreenWithNavBar} />
<QRCodeStack.Screen name="QRCodeIntroScreen" component={QRCodeIntroScreenWithNavBar} />
<QRCodeStack.Screen name="QRCodeOnboard" component={QRCodeOnboardScreenWithNavBar} />
</QRCodeStack.Navigator>
);
};
Expand Down Expand Up @@ -222,6 +221,7 @@ const MainNavigator = () => {
<MainStack.Screen name="ExposureHistory" component={ExposureHistoryNavigator} />
<MainStack.Screen name="Menu" component={MenuScreenWithNavBar} />
<MainStack.Screen name="ClearOutbreakExposure" component={ClearOutbreakExposureScreenWithNavBar} />
<MainStack.Screen name="QRCodeOnboard" component={QRCodeOnboardScreenWithNavBar} />
</MainStack.Navigator>
);
};
Expand Down
File renamed without changes.

0 comments on commit 140cbef

Please sign in to comment.