Browse Source

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

pull/4223/head
Andrew Kingston 5 years ago
parent
commit
cb49659b47
  1. 3
      packages/builder/src/pages/builder/_layout.svelte

3
packages/builder/src/pages/builder/_layout.svelte

@ -66,7 +66,8 @@
await validateTenantId()
}
} 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
})

Loading…
Cancel
Save