diff --git a/src/ErrorPage.tsx b/src/ErrorPage.tsx index 98117c3ed..ffd124924 100644 --- a/src/ErrorPage.tsx +++ b/src/ErrorPage.tsx @@ -1,13 +1,13 @@ import { Box, Typography, Link } from '@mui/material'; export default function ErrorPage() { - return + return

Uh Oh!

Looks like the server ran into an error. This typically happens when our sprite server is down, and we'll try to get it back up as soon as possible. - If this problem still occurs, check server uptime at PMDCollab Status. + If this problem still occurs, check our discord for updates.
} \ No newline at end of file diff --git a/src/index.tsx b/src/index.tsx index 6c671b334..ad025b800 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -23,10 +23,17 @@ async function initialize() { const { data } = await client.query({ query: KeysDocument }).catch(() => ({})) as KeysQueryResult; - + const root = ReactDOM.createRoot(document.getElementById("root")!); if (!data) { - root.render(); + root.render( + + + + + + + ); return; } const sortedMonsters = [...data.monster].sort((a, b) => a.id - b.id)