Skip to content

Commit

Permalink
feat: Add text for if server is offline
Browse files Browse the repository at this point in the history
  • Loading branch information
TAEMBO committed Oct 19, 2024
1 parent 66a3c66 commit d697886
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/servers/[serverAcro]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
</script>

<svelte:head>
<title>{data.dss.server.name} | IRT Livemap</title>
<title>{data.dss.server.name || "Server Offline"} | IRT Livemap</title>
</svelte:head>

<Header name={data.dss.server.name} />
<Header name={data.dss.server.name || "Server Offline"} />
<Main>
{#if data.csg.isNewServer}
<NewServerBanner />
Expand Down

0 comments on commit d697886

Please sign in to comment.