From 101fb21c583c90d8cc9e97bb0aeb956584e0b49f Mon Sep 17 00:00:00 2001 From: Caldwell <115591472+zerbosh@users.noreply.github.com> Date: Mon, 28 Aug 2023 20:40:34 +0200 Subject: [PATCH] UI: Faction augmentation page rerenders automatically (#744) --- src/Faction/ui/AugmentationsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Faction/ui/AugmentationsPage.tsx b/src/Faction/ui/AugmentationsPage.tsx index 9264002a4..5d141770b 100644 --- a/src/Faction/ui/AugmentationsPage.tsx +++ b/src/Faction/ui/AugmentationsPage.tsx @@ -19,7 +19,7 @@ import { useRerender } from "../../ui/React/hooks"; /** Root React Component for displaying a faction's "Purchase Augmentations" page */ export function AugmentationsPage({ faction }: { faction: Faction }): React.ReactElement { - const rerender = useRerender(); + const rerender = useRerender(400); function getAugs(): AugmentationName[] { return getFactionAugmentationsFiltered(faction);