We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2078ccd commit 6debdccCopy full SHA for 6debdcc
1 file changed
frontend/src/lib/components/modals/ErrorDetails.svelte
@@ -67,15 +67,16 @@
67
/>
68
</p>
69
</section>
70
-<section class={`${sectionClass} overflow-y-auto`}>
71
- <p class="font-mono">{error}</p>
72
-</section>
73
{#if !allowOpeningDiscord}
+ <!-- "Bait" so FICSIT Fred bot can respond people who just send a screenshot of the error modal with no debug logs -->
74
<section class={`${sectionClass} text-center`}>
75
<!-- This string intentionally not translated so Fred can always catch it! -->
76
<p class="font-mono">Debug info not yet generated</p>
77
78
{/if}
+<section class={`${sectionClass} overflow-y-auto`}>
+ <p class="font-mono">{error}</p>
79
+</section>
80
<section class={sectionClass}>
81
<p class={`text-base ${fullPageMode ? 'text-center' : ''}`}>
82
<button
0 commit comments