Better formating

This commit is contained in:
garronej 2023-03-04 22:14:45 +01:00
parent 09e2c2a6dd
commit e0ce5d3885

View file

@ -43,7 +43,7 @@ function ContextualizedApp() {
oidcClient.isUserLoggedIn ?
<>
<h1>You are authenticated !</h1>
<pre>{JSON.stringify(jwt_decode(oidcClient.accessToken))}</pre>
<pre>{JSON.stringify(jwt_decode(oidcClient.accessToken), null, 2)}</pre>
<button onClick={() => oidcClient.logout({ redirectTo: "home" })}>Logout</button>
</>
: