0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-10 22:22:45 -05:00

fix(ui): fix sign-in not found bug (#841)

fix sign-in not found bug
This commit is contained in:
simeng-li 2022-05-16 14:59:38 +08:00 committed by GitHub
parent 4ffd4c0480
commit 5d34442018
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,8 +37,8 @@ export default function koaSpaSessionGuard<
) {
ctx.redirect(sessionNotFoundPath);
}
return next();
}
return next();
};
}