Cannot logout with JWT in URL configuration

Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):
opensearchproject/opensearch-dashboards:2.8.0
opensearchproject/opensearch:2.8.0

Describe the issue:
After logging into opensearch-dashboards by programmatically redirecting to http/:5601/?jwt_token=<my jwt_token>, I cannot logout from the opensearch-dashboards UI. l get the following http response when clicking on the user logout button which causes a redirect to http/<opensearch-dashboards IP>:5601/auth/logout: {“statusCode”:404,“error”:“not found”,“message”:“Not Found”}.
When I manually insert “http/<opensearch-dashboards IP>:5601/auth/logout” in the browser URL window, I get the http response {“statusCode”:401,“error”:“Unauthorized”,“message”:“Authentication Exception”}

Configuration:
See my opensearch and opensearch-dashboards configuration in my security topic at Configuration of JWT in URL for authentication

Relevant Logs or Screenshots:
I get the following http response when clicking on the opensearch-dashboards user logout button which causes a redirect to http/<opensearch-dashboards IP>:5601/auth/logout: {“statusCode”:404,“error”:“not found”,“message”:“Not Found”}.
When I manually insert “http/<opensearch-dashboards IP>:5601/auth/logout” in the browser URL window, I get the http response {“statusCode”:401,“error”:“Unauthorized”,“message”:“Authentication Exception”}

This is happening because clicking on Logout do not reset the url to keep you where you’re at, with everything bit of information there is in the url.
If you’d navigate within the Dashboards apps, still being connected to your JWT account but having the JWT no longer in the url, clicking on the Logout will prevent you from navigating away. However, if you’re still have your JWT in the url, you’ll be reconnected.
Now, what will be the use case of logging out when using a JWT token?
If you want to connect to another account, you’ll have to change the JWT token and that will work directly. If you want to leave the dashboard, close the page (or tab).