Skip to content

Commit

Permalink
fix: allow configuring Keycloak logout redirect (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalinkrustev authored Feb 27, 2024
1 parent f718e1d commit 674d516
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mojaloop-payment-manager-ui",
"version": "1.17.3",
"version": "1.17.4",
"private": true,
"proxy": "http://localhost:10000",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/App/Layout/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Navbar: FC<Navbar> = ({
const clickFunc = () => {
if (logoutUrl) {
if (kratos) {
fetch(`${logoutUrl}?return_to=${window.location.href}`, {
fetch(`${logoutUrl}`, {
headers: {
accept: 'application/json',
},
Expand Down

0 comments on commit 674d516

Please sign in to comment.