We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fb1353 commit c03ce51Copy full SHA for c03ce51
src/frontend_react/src/api/config.tsx
@@ -44,6 +44,8 @@ export function getConfigData() {
44
export async function getUserInfo(): Promise<UserInfo[]> {
45
try {
46
const response = await fetch("/.auth/me");
47
+ console.log("Fetching user info from: ", "/.auth/me");
48
+ console.log("Response ", response);
49
if (!response.ok) {
50
console.log(
51
"No identity provider found. Access to chat will be blocked."
0 commit comments