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 18bcda9 commit e7ebce8Copy full SHA for e7ebce8
src/containers/Auth/CanvasLtiLogin.js
@@ -48,10 +48,11 @@ function CanvasLtiSSO(props) {
48
}
49
})
50
.catch((err) => {
51
+ const error = Array.isArray(err.errors) ? err.errors[0] : err;
52
Swal.fire({
53
icon: 'error',
54
title: 'Failed to login!',
- html: Array.isArray(err.errors) ? err.errors[0] : err,
55
+ html: `<p>${error}</p><p>Please contact support at <a href="https://www.currikistudio.org/" target="_blank">Currikistudio.org</a></p>`,
56
});
57
58
0 commit comments