From f07c442a9250731c3018fc0f535e7fcec900d7c9 Mon Sep 17 00:00:00 2001
From: catloversg <152669316+catloversg@users.noreply.github.com>
Date: Thu, 12 Dec 2024 17:55:28 +0700
Subject: [PATCH] CODEBASE: Fix React warning of missing keys in
CovenantPurchasesRoot.tsx (#1824)
---
src/PersonObjects/Sleeve/ui/CovenantPurchasesRoot.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/PersonObjects/Sleeve/ui/CovenantPurchasesRoot.tsx b/src/PersonObjects/Sleeve/ui/CovenantPurchasesRoot.tsx
index 3c96b1347..0b21df916 100644
--- a/src/PersonObjects/Sleeve/ui/CovenantPurchasesRoot.tsx
+++ b/src/PersonObjects/Sleeve/ui/CovenantPurchasesRoot.tsx
@@ -58,7 +58,7 @@ export function CovenantPurchasesRoot(props: IProps): React.ReactElement {
const upgradePanels = [];
for (let i = 0; i < Player.sleeves.length; ++i) {
const sleeve = Player.sleeves[i];
- upgradePanels.push();
+ upgradePanels.push();
}
return (