DNET: Player feedback (#2545)

This commit is contained in:
Michael Ficocelli
2026-03-19 21:07:43 -07:00
committed by GitHub
parent 73b7921ef0
commit 1b6b07faae
38 changed files with 248 additions and 108 deletions
+3 -3
View File
@@ -252,7 +252,7 @@ export function NetworkDisplayWrapper(): React.ReactElement {
<Typography variant={"h5"} sx={{ fontWeight: "bold" }}>
Dark Net
</Typography>
{instability && (
{instability > 0 && (
<Tooltip
title={
<>
@@ -299,13 +299,13 @@ export function NetworkDisplayWrapper(): React.ReactElement {
{DarknetState.Network.slice(0, netDisplayDepth).map((row) =>
row.map(
(server) =>
server && (
!!server && (
<ServerStatusBox server={server} key={server.ip} enableAuth={allowAuth(server)} classes={classes} />
),
),
)}
{labyrinth && netDisplayDepth > depth && (
{!!labyrinth && netDisplayDepth > depth && (
<ServerStatusBox server={labyrinth} enableAuth={allowAuth(labyrinth)} classes={classes} />
)}
</div>