fix: lazy load login success component

This commit is contained in:
Constantin Simonis 2025-02-19 12:18:12 +01:00
parent 8d4901601f
commit 6c025cc8d2
No known key found for this signature in database
GPG key ID: 758DD9C506603183
3 changed files with 3 additions and 4 deletions

View file

@ -59,7 +59,7 @@ public class UserService {
HttpHeaders headers = new HttpHeaders();
headers.set("Authorization", token);
ResponseEntity<KeycloakUserDto> response = this.http.exchange("http://localhost:9090/realms/LF12/protocol/openid-connect/userinfo", HttpMethod.GET, new HttpEntity<>(headers), KeycloakUserDto.class);
return response.getBody();
}