Trouble with JWT

I have a Django application which I’m using as a backend for a React Native frontend app. In the Django app, I use rest_framework and simplejwt to handle authentication. When I run my app locally, everything seems to be working fine - I include my Authorization header in all my requests with my Bearer {token} and the server responds as expected. Once I deploy to fly, however, my requests fail with the error “Authentication credentials were not provided.” I believe this is happening because my Authorization header is somehow being stripped but I’m not sure how to properly debug or fix this on Fly. Any help would be greatly appreciated!