From ae54092334aa1c5cf6b591633a17ec2b0a9ba068 Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Mon, 18 Jul 2022 02:47:11 -0400 Subject: [PATCH] fix any in CharacterStats --- src/ui/CharacterStats.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/CharacterStats.tsx b/src/ui/CharacterStats.tsx index 18793d785..ac2a0e38e 100644 --- a/src/ui/CharacterStats.tsx +++ b/src/ui/CharacterStats.tsx @@ -113,7 +113,7 @@ interface IMoneyModalProps { function MoneyModal({ open, onClose }: IMoneyModalProps): React.ReactElement { const player = use.Player(); function convertMoneySourceTrackerToString(src: MoneySourceTracker): React.ReactElement { - const parts: any[][] = [[`Total:`, ]]; + const parts: [string, JSX.Element][] = [[`Total:`, ]]; if (src.augmentations) { parts.push([`Augmentations:`, ]); }