Use client_id to avoid error message in new Keycloak version

This commit is contained in:
Christian Cueni 2024-09-26 11:47:16 +02:00
parent 9c5ca489f0
commit 2754245f78
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ let logoutRedirectUrl = import.meta.env.VITE_LOGOUT_REDIRECT || "/";
if (import.meta.env.VITE_OAUTH_API_BASE_URL) {
logoutRedirectUrl = `${
import.meta.env.VITE_OAUTH_API_BASE_URL
}logout/?post_logout_redirect_uri=${window.location.origin}`;
}logout/?post_logout_redirect_uri=${window.location.origin}&client_id=iterativ`;
}
const AVAILABLE_LANGUAGES = ["de", "fr", "it"];