Skip to content

Commit

Permalink
Merge pull request #70 from the-standard/202412-vaults-fix
Browse files Browse the repository at this point in the history
fix: catch missed vault.status
  • Loading branch information
ZakMooney authored Dec 19, 2024
2 parents 0730a2e + 32f7499 commit 9d59bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/vaults/VaultList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const VaultList = ({ vaults, vaultsLoading, listType }) => {
}
})
.map(function(vault, index) {
if (!vault.status) {
if (!vault || !vault.status) {
return(
<tr
key={index}
Expand Down

0 comments on commit 9d59bb4

Please sign in to comment.