UI: Change description and add tooltip for HackMoney-related multipliers (#1823)

* UI: Change description and add tooltip for HackMoney-related multipliers

* Update based on feedback
This commit is contained in:
catloversg
2024-12-18 17:51:25 +07:00
committed by GitHub
parent 9c4b0c004c
commit e6078ab1df
9 changed files with 60 additions and 31 deletions
+3 -1
View File
@@ -109,7 +109,9 @@ function CurrentBitNode(): React.ReactElement {
<Typography variant="h5">
BitNode {Player.bitNodeN}: {BitNodes[index].name} (Level {lvl})
</Typography>
<Typography sx={{ whiteSpace: "pre-wrap", overflowWrap: "break-word" }}>{BitNodes[index].info}</Typography>
<Typography component="div" sx={{ whiteSpace: "pre-wrap", overflowWrap: "break-word" }}>
{BitNodes[index].info}
</Typography>
</Paper>
);
}