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 30768fd commit 313a0f4Copy full SHA for 313a0f4
frontend/components/ErrorMessage.js
@@ -571,16 +571,7 @@ const Motivation = ({ stacktrace }) => {
571
return Math.random() < motivational_word_probability ? motivational_words[Math.floor(Math.random() * motivational_words.length)] : null
572
}, [stacktrace])
573
574
- return msg == null
575
- ? null
576
- : html`<div
577
- class="dont-panic"
578
- onClick=${(e) => {
579
- window.open("https://discourse.julialang.org/", "_blank")?.focus()
580
- }}
581
- >
582
- ${msg}
583
- </div>`
+ return msg == null ? null : html`<div class="dont-panic">${msg}</div>`
584
}
585
586
const get_erred_upstreams = (
0 commit comments