The issue was that I imported store
from a separate file than from persistStorage
in index.js
.
I had this:
import store from './store'
import { persistor } from "./persistStorage"
I should have had this:
import { persistor, store } from "./persistStorage"