Skip to content

Commit

Permalink
Fix bug where logged in user was not redirected to original path
Browse files Browse the repository at this point in the history
  • Loading branch information
eriksson-daniel committed Jul 16, 2024
1 parent 8482823 commit 3068327
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (ENVIRONMENT.isLocal) {
params: {
simple: true,
chatbot: true,
redirectToApp: false,
redirectToApp: true,
logoutUrl: '/oauth2/logout',
logoutWarning: true,
},
Expand Down
2 changes: 1 addition & 1 deletion server/src/routes/index-file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class IndexFile {
params: {
simple: true,
chatbot: true,
redirectToApp: false,
redirectToApp: true,
logoutUrl: '/oauth2/logout',
context: 'privatperson',
level: 'Level4',
Expand Down

0 comments on commit 3068327

Please sign in to comment.