CODEBASE: Fix typo of "CorruptableText" (#2144)

This commit is contained in:
catloversg
2025-05-20 10:07:09 +07:00
committed by GitHub
parent 24b31975e7
commit 197e7f79cb
10 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ import { formatFavor, formatReputation } from "../../ui/formatNumber";
import { Router } from "../../ui/GameRoot";
import { Page } from "../../ui/Router";
import { useCycleRerender } from "../../ui/React/hooks";
import { CorruptableText } from "../../ui/React/CorruptableText";
import { CorruptibleText } from "../../ui/React/CorruptibleText";
import { Requirement } from "../../ui/Components/Requirement";
import { Faction } from "../Faction";
@@ -137,7 +137,7 @@ const FactionElement = (props: FactionElementProps): React.ReactElement => {
) : (
<Tooltip title={"Rumored Faction"}>
<span style={{ overflow: "hidden", whiteSpace: "nowrap", textOverflow: "ellipsis" }}>
<CorruptableText content={props.faction.name} spoiler={false} />
<CorruptibleText content={props.faction.name} spoiler={false} />
</span>
</Tooltip>
)}