From ef334cb8517dfaff517e38a5fbf8d51f92193f8b Mon Sep 17 00:00:00 2001
From: Shy <48560522+shyguy1412@users.noreply.github.com>
Date: Fri, 16 Feb 2024 01:33:08 +0100
Subject: [PATCH] BUGFIX: make hacknet node a bit bigger and change unit to em
(#1094)
PR #1070 caused some overflow when having hacknet servers.
---
src/Hacknet/ui/HacknetRoot.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Hacknet/ui/HacknetRoot.tsx b/src/Hacknet/ui/HacknetRoot.tsx
index 63bfe1ef3..d829368f4 100644
--- a/src/Hacknet/ui/HacknetRoot.tsx
+++ b/src/Hacknet/ui/HacknetRoot.tsx
@@ -117,7 +117,7 @@ export function HacknetRoot(): React.ReactElement {
{hasHacknetServers() && }
- {nodes}
+ {nodes}
setOpen(false)} />
>
);