diff options
| author | 2023-03-04 22:23:27 +0100 | |
|---|---|---|
| committer | 2023-03-04 22:23:27 +0100 | |
| commit | b6f7521130c16e27e269a66cbbad8e605b8d961a (patch) | |
| tree | a13567ce148cb7778c605450a6edc07aad5ba8db | |
| parent | Better formating (diff) | |
Better formating
| -rw-r--r-- | src/App/App.tsx | 2 |
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> </> : |