aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 6e343fd..a89eb9e 100644
--- a/src/App/App.tsx
+++ b/src/App/App.tsx
@@ -43,7 +43,7 @@ function ContextualizedApp() {
oidcClient.isUserLoggedIn ?
<>
<h1>You are authenticated !</h1>
- <pre>{JSON.stringify(jwt_decode(oidcClient.accessToken), null, 2)}</pre>
+ <pre style={{ textAlign: "left" }}>{JSON.stringify(jwt_decode(oidcClient.accessToken), null, 2)}</pre>
<button onClick={() => oidcClient.logout({ redirectTo: "home" })}>Logout</button>
</>
: