Skip to content

Commit

Permalink
AUT-1689 Fix refresh token display after session update
Browse files Browse the repository at this point in the history
  • Loading branch information
Marten332 committed Mar 22, 2024
1 parent d7482b1 commit 48f7216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/static/scripts/govsso-session-update.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function updateGovSsoSession() {

$('#id_token').text(idToken.id_token);
$('#access_token').text(idToken.access_token);
$('#refresh_token').text(idToken.access_token);
$('#refresh_token').text(idToken.refresh_token);
$('#jti').text(idToken.jti);
$('#iss').text(idToken.iss);
$('#aud').text(idToken.aud);
Expand Down

0 comments on commit 48f7216

Please sign in to comment.