Remove logging from AppDrawer & AppStack

This commit is contained in:
Brandon Presley 2023-11-13 16:07:23 +13:00
parent 155eaddbdd
commit ec0fdbcec7
2 changed files with 0 additions and 2 deletions

View File

@ -22,7 +22,6 @@ interface AppDrawerParams {
export default function AppDrawer({
route,
}: StackScreenProps<{ settings: AppDrawerParams }>) {
console.log(route.params.settings.startup);
const dark = useDark();
return (

View File

@ -51,7 +51,6 @@ export type StackParams = {
const Stack = createStackNavigator<StackParams>();
export default function AppStack({ settings }: { settings: Settings }) {
console.log({ settings });
return (
<Stack.Navigator
screenOptions={{ headerShown: false, animationEnabled: false }}