From 32f7499fb483dd9b7eea880aaef4e74a892b64fc Mon Sep 17 00:00:00 2001 From: Zak Date: Thu, 19 Dec 2024 13:54:36 +0000 Subject: [PATCH] fix: catch missed vault.status --- src/components/vaults/VaultList.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/vaults/VaultList.jsx b/src/components/vaults/VaultList.jsx index 8070ec5..7a95f8e 100644 --- a/src/components/vaults/VaultList.jsx +++ b/src/components/vaults/VaultList.jsx @@ -125,7 +125,7 @@ const VaultList = ({ vaults, vaultsLoading, listType }) => { } }) .map(function(vault, index) { - if (!vault.status) { + if (!vault || !vault.status) { return(