fix: set jwt auth for custom apps

This commit is contained in:
Ruben Fiszel
2025-10-18 07:10:09 +00:00
parent 4cc2166c10
commit d86ad751d4
+3 -1
View File
@@ -60,7 +60,9 @@
async function loadApp() {
if (parsedCustomPath.jwt) {
OpenAPI.TOKEN = 'jwt_ext_' + parsedCustomPath.jwt
const token = 'jwt_ext_' + parsedCustomPath.jwt
OpenAPI.TOKEN = token
setContext<{ token?: string }>('AuthToken', { token })
jwtError = false
}
try {