diff --git a/README.md b/README.md
index f8ae4e56..77f6010c 100755
--- a/README.md
+++ b/README.md
@@ -17,62 +17,62 @@ In this project, you take a fairly complex application used to search a movie da
## Instructions
### Task 1: Project Set Up
-* [ ] Create a forked copy of this project.
-* [ ] Clone your OWN version of the repository in your terminal
-* [ ] cd into the project base directory `cd web-module-project-redux`
-* [ ] Download project dependencies by running `npm install``
-* [ ] Start up the app using `npm start`
+* [x] Create a forked copy of this project.
+* [x] Clone your OWN version of the repository in your terminal
+* [x] cd into the project base directory `cd web-module-project-redux`
+* [x] Download project dependencies by running `npm install``
+* [x] Start up the app using `npm start`
### Task 2: Project Requirements
#### Setup Redux
> *The DOM and movie reducer has been provided for you, but it's up to to connect it to redux...*
-* [ ] In index.js, make use of the createStore method and Provider component to link your App to redux.
+* [x] In index.js, make use of the createStore method and Provider component to link your App to redux.
#### Connecting the Movie reducer
> *Within the reducers folder is the movieReducers file. We have the state already setup it up here with some initial data. Let's connect that state to our component.*
-* [ ] **In movieReducer.js, make sure that we are setting our state by default to initialState.** Otherwise your state will not have the original structure it needs to function!
+* [x] **In movieReducer.js, make sure that we are setting our state by default to initialState.** Otherwise your state will not have the original structure it needs to function!
-* [ ] **The MovieList component prints all of our movies to the screen.** Use the connect method here to map the movies state value into props. Replace our static movie variable with that prop.
+* [x] **The MovieList component prints all of our movies to the screen.** Use the connect method here to map the movies state value into props. Replace our static movie variable with that prop.
-* [ ] **The Movie component needs to access our list of movies to function.** Map movies to props here as well.
+* [x] **The Movie component needs to access our list of movies to function.** Map movies to props here as well.
-* [ ] **Finally, MovieHeader uses appTitle to display the title text.** Connect this component to appTitle and test appTitle is correctly displayed in your app.
+* [x] **Finally, MovieHeader uses appTitle to display the title text.** Connect this component to appTitle and test appTitle is correctly displayed in your app.
#### Connecting the Delete and Add Movie actions
> *Looks like you got a good handle on mapping stateToProps! Now let's connect some actions.*
-* [ ] Note that the deleteMovie reducer case and action creator are already available.
+* [x] Note that the deleteMovie reducer case and action creator are already available.
-* [ ] **We can delete movies within the Movie Component.** Connect the deleteMovie action through the connect method.
+* [x] **We can delete movies within the Movie Component.** Connect the deleteMovie action through the connect method.
-* [ ] **Find the HTML element that should trigger a deletion in the movie component.** Create and connect the necessary event handlers to call deleteMovie on the current movie's id. After setting the state, redirect the user using the push('/movies') command.
+* [x] **Find the HTML element that should trigger a deletion in the movie component.** Create and connect the necessary event handlers to call deleteMovie on the current movie's id. After setting the state, redirect the user using the push('/movies') command.
-* [ ] Add in an ADD_MOVIE case to movieReducer.js.
-* [ ] Make this new case return a version of state with new movie values passed in through the payload.
-* [ ] Create an action creator for addMovie in movieActions.js.
-* [ ] Find the component that triggers the adding of a movie and connect the addMovie action.
-* [ ] Create and connect the necessary event handlers to call addMovie.
-* [ ] Add in push('/movies/) after calling your action to trigger a redirect.
+* [x] Add in an ADD_MOVIE case to movieReducer.js.
+* [x] Make this new case return a version of state with new movie values passed in through the payload.
+* [x] Create an action creator for addMovie in movieActions.js.
+* [x] Find the component that triggers the adding of a movie and connect the addMovie action.
+* [x] Create and connect the necessary event handlers to call addMovie.
+* [x] Add in push('/movies/) after calling your action to trigger a redirect.
#### Build out the favorites reducer
> *Alright! Now that the movie reducer is complete, you have the chance to build a reducer from scratch to handle favorite movie functionality. We will also work on combining reducers.*
-* [ ] Create a reducer file for handling business logic for favorites. Include the following state values in your initialState setup:
+* [x] Create a reducer file for handling business logic for favorites. Include the following state values in your initialState setup:
- favorites: an array of movie objects
- displayFavorites: a boolean that holds if favorite elements should be displayed in app
-* [ ] **Import your new reducer file into the ./reducers/index.js file.** As a start, only add a default case to the switch statement.
+* [x] **Import your new reducer file into the ./reducers/index.js file.** As a start, only add a default case to the switch statement.
-* [ ] **In reducers/index.js, use the combineReducers method to connect both movies and favorite movies to redux.**
+* [x] **In reducers/index.js, use the combineReducers method to connect both movies and favorite movies to redux.**
-* [ ] **Notice that your movie functions no longer work. Why?** Make changes necessary to get the component connected to the movie reducer working again.
+* [x] **Notice that your movie functions no longer work. Why?** Make changes necessary to get the component connected to the movie reducer working again.
-* [ ] Connect the favorites state to the FavoriteMovieList component and test.
+* [x] Connect the favorites state to the FavoriteMovieList component and test.
-* [ ] Connect the displayFavorites state to the Movie and MovieHeader component.
+* [x] Connect the displayFavorites state to the Movie and MovieHeader component.
#### Build out the favorites actions
> *Now is your chance to build our all the rest of the app on your own. You can do this!*
diff --git a/src/App.js b/src/App.js
index cb66bfe6..89c3239e 100644
--- a/src/App.js
+++ b/src/App.js
@@ -13,6 +13,7 @@ import FavoriteMovieList from './components/FavoriteMovieList';
const App = props => {
const displayFavorites = true;
+ console.log("props from App: ", props)
return (