diff --git a/README.md b/README.md index efa9bc7..6cb8acd 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Free meal planner for cooks short on ideas! (like me …) - `React` client on the front-end - [Materialize](https://materializecss.com) CSS librairy for styling - Public API: [TheMealDb](https://www.themealdb.com/api.php) and [TheCocktailDb](https://www.thecocktaildb.com/api.php) -- Hosting: anywhere +- Hosting: [Render](https://render.com/) ## Versions diff --git a/src/App.js b/src/App.js index f574adf..a708359 100644 --- a/src/App.js +++ b/src/App.js @@ -166,7 +166,6 @@ const App = () => { diff --git a/src/components/CategoryEntry.js b/src/components/CategoryEntry.js index 850fd28..40c56f2 100644 --- a/src/components/CategoryEntry.js +++ b/src/components/CategoryEntry.js @@ -13,7 +13,7 @@ const CategoryEntry = props => { return (
-
  • +
  • {strCategory}

    {strCategory}

    {strCategoryDescription}
  • diff --git a/src/components/SearchBar.js b/src/components/SearchBar.js index 6246423..5ec3f3c 100644 --- a/src/components/SearchBar.js +++ b/src/components/SearchBar.js @@ -5,7 +5,7 @@ const SearchBar = props => { return (
    { />
    diff --git a/src/pages/CategoryList.js b/src/pages/CategoryList.js index 15a7613..9970864 100644 --- a/src/pages/CategoryList.js +++ b/src/pages/CategoryList.js @@ -15,7 +15,7 @@ const CategoryListPage = props => {

    The Chef's Meal Categories

      {categories.map((category, i) => ( - + ))}
    diff --git a/src/pages/Search.js b/src/pages/Search.js index e4b13b8..562aa76 100644 --- a/src/pages/Search.js +++ b/src/pages/Search.js @@ -5,7 +5,6 @@ const SearchPage = props => { const { meals } = props.searchResults; const { searchString } = props; - // console.log(meals[0]); return (

    Search Results for: {searchString}