mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-06 07:37:56 +02:00
CODEBASE: Fix typo of "CorruptableText" (#2144)
This commit is contained in:
@@ -24,7 +24,7 @@ import { LocationType } from "@enums";
|
||||
import { isBackdoorInstalled } from "../../Server/ServerHelpers";
|
||||
import { GetServer } from "../../Server/AllServers";
|
||||
|
||||
import { CorruptableText } from "../../ui/React/CorruptableText";
|
||||
import { CorruptibleText } from "../../ui/React/CorruptibleText";
|
||||
import { Router } from "../../ui/GameRoot";
|
||||
import { Page } from "../../ui/Router";
|
||||
import { serverMetadata } from "../../Server/data/servers";
|
||||
@@ -118,7 +118,7 @@ export function GenericLocation({ location, showBackButton }: IProps): React.Rea
|
||||
{backdoorInstalled && serverMeta ? (
|
||||
<Tooltip title={`Backdoor installed on ${serverMeta.hostname}.`}>
|
||||
<span>
|
||||
<CorruptableText content={location.name} spoiler={false} />
|
||||
<CorruptibleText content={location.name} spoiler={false} />
|
||||
</span>
|
||||
</Tooltip>
|
||||
) : (
|
||||
|
||||
@@ -29,7 +29,7 @@ import { SnackbarEvents } from "../../ui/React/Snackbar";
|
||||
import { N00dles } from "../../utils/helpers/N00dles";
|
||||
import { Exploit } from "../../Exploits/Exploit";
|
||||
import { applyAugmentation } from "../../Augmentation/AugmentationHelpers";
|
||||
import { CorruptableText } from "../../ui/React/CorruptableText";
|
||||
import { CorruptibleText } from "../../ui/React/CorruptibleText";
|
||||
import { HacknetNode } from "../../Hacknet/HacknetNode";
|
||||
import { HacknetServer } from "../../Hacknet/HacknetServer";
|
||||
import { GetServer } from "../../Server/AllServers";
|
||||
@@ -329,7 +329,7 @@ export function SpecialLocation(props: SpecialLocationProps): React.ReactElement
|
||||
return (
|
||||
<>
|
||||
<Typography>
|
||||
<CorruptableText content={"An eerie aura surrounds this area. You feel you should leave."} spoiler={false} />
|
||||
<CorruptibleText content={"An eerie aura surrounds this area. You feel you should leave."} spoiler={false} />
|
||||
</Typography>
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user