When I did all of the listed items below AND had this code for my CORS configuration in my app.py:
CORS(app, supports_credentials=True, origins=[
"http://localhost:3000",
"http://thecasecomp.com"
])
Seems like I needed my online domain as well for both to work.