Hi there! 👋
I noticed that in [15-redux-intro/final/src/store-v2.js], you're using the following import for redux-thunk:
import thunk from "redux-thunk";
As of redux-thunk v3.1.0, when using manual setup (without Redux Toolkit), the thunk middleware should be imported as a named import like this:
import { thunk } from "redux-thunk";