Skip to content

Commit

Permalink
fix: 🐛 duplicate Home route name
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-software committed Nov 5, 2022
1 parent 3ab018f commit 7d1d5f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/navigation/routes/logged-in-routes.tsx
Expand Up @@ -77,7 +77,7 @@ export type LoggedInRouteParams = Omit<
LoggedInRouteParamsOverride

const routes = [
{ name: 'Home', component: Navigation },
{ name: 'Navigation', component: Navigation },
{ name: 'Recipe', component: Screens.Recipe },
{ name: 'RecipeDescription', component: Screens.RecipeDescription },
{ name: 'CreateStep', component: Screens.CreateStep },
Expand Down
2 changes: 1 addition & 1 deletion src/screens/add-recipe/add-recipe-details.tsx
Expand Up @@ -21,7 +21,7 @@ export function AddRecipeDetails({ form }: ICreateRecipeDetails): ReactElement {
return (
<ScrollView style={{ paddingHorizontal: 16 }}>
<Text category='h5' style={addRecipeStyles.heading}>
Create New Recipe
New Recipe
</Text>
<ControlledInput<RecipeInput>
controllerProps={{
Expand Down

0 comments on commit 7d1d5f3

Please sign in to comment.