Slightly friendlier loading screen
This commit is contained in:
parent
71c1138d34
commit
bac2b3bae5
1 changed files with 14 additions and 11 deletions
|
@ -347,17 +347,20 @@ export function LoadingDialogue({
|
||||||
<p>
|
<p>
|
||||||
<strong>{subtitle}</strong>
|
<strong>{subtitle}</strong>
|
||||||
</p>
|
</p>
|
||||||
{error !== null && (
|
{error !== null &&
|
||||||
|
(error === "Error: No valid authentication data provided." ? (
|
||||||
|
<p>Redirecting you to MyRadio, please wait...</p>
|
||||||
|
) : (
|
||||||
<>
|
<>
|
||||||
<p>
|
<p>
|
||||||
<strong>Failed!</strong> Please tell Computing Team that something
|
<strong>Failed!</strong> Please tell Computing Team that
|
||||||
broke.
|
something broke.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<code>{error}</code>
|
<code>{error}</code>
|
||||||
</p>
|
</p>
|
||||||
</>
|
</>
|
||||||
)}
|
))}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue