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 1f410a2 commit 30ff188Copy full SHA for 30ff188
src/auth/sisuRoles.ts
@@ -46,6 +46,7 @@ export const hasFullSisuAccess = async (personId: string) => {
46
}
47
return false
48
} catch (error) {
49
+ console.error('Error fetching Sisu roles:', error)
50
51
52
src/util/importerClient.ts
@@ -8,6 +8,7 @@ const importerClient = axios.create({
8
},
9
baseURL: importerUrl,
10
})
11
+importerClient.defaults.timeout = 5000
12
13
const getImporterClient = () => {
14
if (!importerToken) {
0 commit comments