Merge pull request #2109 from hexnaught/remove-timestamp-newline-buy-list-patch

fix(command:buy) don't wrap in typography
This commit is contained in:
hydroflame 2021-12-22 12:05:39 -05:00 committed by GitHub
commit 50a85b61e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,7 +6,6 @@ import { Terminal } from "../Terminal";
import { SpecialServers } from "../Server/data/SpecialServers"; import { SpecialServers } from "../Server/data/SpecialServers";
import { Money } from "../ui/React/Money"; import { Money } from "../ui/React/Money";
import { DarkWebItem } from "./DarkWebItem"; import { DarkWebItem } from "./DarkWebItem";
import Typography from "@mui/material/Typography";
//Posts a "help" message if connected to DarkWeb //Posts a "help" message if connected to DarkWeb
export function checkIfConnectedToDarkweb(): void { export function checkIfConnectedToDarkweb(): void {
@ -31,9 +30,9 @@ export function listAllDarkwebItems(): void {
); );
Terminal.printRaw( Terminal.printRaw(
<Typography> <>
<span>{item.program}</span> - <span>{cost}</span> - <span>{item.description}</span> <span>{item.program}</span> - <span>{cost}</span> - <span>{item.description}</span>
</Typography>, </>,
); );
} }
} }