From b66d6253aeb6d6cd16e772f26c88f494042b7675 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 14 May 2023 14:02:57 -0500 Subject: [PATCH] Fix repair factory confirmation label --- src/data/nodeTypes.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/nodeTypes.tsx b/src/data/nodeTypes.tsx index edadc7f..fa32502 100644 --- a/src/data/nodeTypes.tsx +++ b/src/data/nodeTypes.tsx @@ -96,7 +96,7 @@ export const brokenFactory = { } }, confirmationLabel: () => - Decimal.gte(main.energy.value, 1000) + Decimal.gte(main.energy.value, 100) ? { text: "Tap again to confirm" } : { text: "Cannot afford", color: "var(--danger)" } }