aboutsummaryrefslogtreecommitdiffstats
path: root/src/App/App.tsx
diff options
context:
space:
mode:
authorGravatar garronej <[email protected]>2023-03-22 03:36:54 +0100
committerGravatar garronej <[email protected]>2023-03-22 03:36:54 +0100
commit6b031c709a39699ca34979bb99af6dba8fa4f598 (patch)
tree42e27a9eee7079d827228b1a63a03550252cd628 /src/App/App.tsx
parentUpdate README (diff)
Fix build
Diffstat (limited to 'src/App/App.tsx')
-rw-r--r--src/App/App.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App/App.tsx b/src/App/App.tsx
index 9efcf9f..0d9cc38 100644
--- a/src/App/App.tsx
+++ b/src/App/App.tsx
@@ -48,7 +48,7 @@ function ContextualizedApp() {
<>
<h1>You are authenticated !</h1>
{/* On older Keycloak version its /auth/realms instead of /realms */}
- <a href={`${keycloakUrl}/realms/${keycloakRealm}/account`} target="_blank">Link to your Keycloak account</a>
+ <a href={`${keycloakUrl}/realms/${keycloakRealm}/account`} target="_blank" rel="noreferrer">Link to your Keycloak account</a>
<pre style={{ textAlign: "left" }}>{JSON.stringify(jwt_decode(oidcClient.getAccessToken()), null, 2)}</pre>
<button onClick={() => oidcClient.logout({ redirectTo: "home" })}>Logout</button>
</>