Exception while handling localhost file

I am receiving the exceptions when trying to run rasa x. Here is a small trace stack of one of the many unhandled requests:

[2021-09-22 14:38:09 -0500] [18556] [ERROR] Exception occurred while handling uri: '[http://localhost:5002/static/css/2.9c49e7ce.chunk.css'](http://localhost:5002/static/css/2.9c49e7ce.chunk.css%27)
Traceback (most recent call last):
File "D:\anaconda3\envs\rasa2env\lib\site-packages\sanic\app.py", line 908, in handle_request
request, request_name=name
File "D:\anaconda3\envs\rasa2env\lib\site-packages\spf\framework.py", line 646, in _run_request_middleware_19_12
response = await response
File "D:\anaconda3\envs\rasa2env\lib\site-packages\rasax\community\database\utils.py", line 368, in set_session
user = await decorators.user_from_request(request)
File "D:\anaconda3\envs\rasa2env\lib\site-packages\rasax\community\api\decorators.py", line 90, in user_from_request
return await _get_user_from_request(request.app, request)
File "D:\anaconda3\envs\rasa2env\lib\site-packages\rasax\community\api\decorators.py", line 73, in _get_user_from_request
payload = await instance.auth.extract_payload(request, verify=False)
AttributeError: 'Sanic' object has no attribute 'auth'

When I click the html hyperlink on a separate machine it brings up the html/css code in my default browser application; as seen in this photo:

However, this is the result from opening the link on the machine I am trying to run Rasa X:

I figured out what the issue was.My sanic-jwt versions where different. I had to roll back my sanic-jwt version 1.7.0 to 1.6.0.