Don't show an error notification when failing API requests on the initial page load of the login page

This commit is contained in:
Andrew Kingston 2022-01-24 19:15:28 +00:00
parent b75401edfb
commit 95488fd48d
1 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,8 @@
await validateTenantId() await validateTenantId()
} }
} catch (error) { } catch (error) {
notifications.error("Error initialising builder") // Don't show a notification here, as we might 403 initially due to not
// being logged in
} }
loaded = true loaded = true
}) })