Skip to content

Commit

Permalink
Merge pull request #328 from valory-xyz/fix/remove-pandora-link
Browse files Browse the repository at this point in the history
fix: removed link to erroring pandora.computer
  • Loading branch information
truemiller authored Sep 6, 2024
2 parents 59bca90 + 9ffafde commit eed4cae
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions frontend/components/SettingsPage/DebugInfoSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,18 +180,20 @@ export const DebugInfoSection = () => {
});
}

const multisigAddress =
services[0]?.chain_configs?.[CHAINS.GNOSIS.chainId]?.chain_data?.multisig;
if (multisigAddress) {
result.push({
title: 'Agent Safe',
...getItemData(walletBalances, multisigAddress),
link: {
title: 'See agent activity on Pandora',
href: `https://pandora.computer/predict/${multisigAddress}`,
},
});
}
// COMMENTED UNTIL PANDORA UPDATES GRAPH ENDPOINT 5/9
//
// const multisigAddress =
// services[0]?.chain_configs?.[CHAINS.GNOSIS.chainId]?.chain_data?.multisig;
// if (multisigAddress) {
// result.push({
// title: 'Agent Safe',
// ...getItemData(walletBalances, multisigAddress),
// link: {
// title: 'See agent activity on Pandora',
// href: `https://pandora.computer/predict/${multisigAddress}`,
// },
// });
// }

return result;
}, [
Expand Down

0 comments on commit eed4cae

Please sign in to comment.