build dev

This commit is contained in:
Olivier Gagnon
2021-09-18 04:01:07 -04:00
parent bdfa4be71f
commit e1a22016b5
14 changed files with 1124 additions and 1269 deletions
+1 -2
View File
@@ -22,7 +22,7 @@ import { use } from "../../ui/Context";
import { CreateGangPopup } from "./CreateGangPopup";
type IProps = {
faction: Faction | null;
faction: Faction;
startHackingMissionFn: (faction: Faction) => void;
};
@@ -65,7 +65,6 @@ const GangNames = [
export function FactionRoot(props: IProps): React.ReactElement {
const faction = props.faction;
if (faction === null) throw new Error("Trying to render the Faction page with null faction");
const player = use.Player();
const router = use.Router();