aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar garronej <[email protected]>2023-03-04 22:23:27 +0100
committerGravatar garronej <[email protected]>2023-03-04 22:23:27 +0100
commitb6f7521130c16e27e269a66cbbad8e605b8d961a (patch)
treea13567ce148cb7778c605450a6edc07aad5ba8db /src
parentBetter formating (diff)
Better formating
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>
</>
: