diff --git a/src/routes/safe/component/Transactions/Collapsed/Confirmations.jsx b/src/routes/safe/component/Transactions/Collapsed/Confirmations.jsx index 7c8550f1..b4e49d7e 100644 --- a/src/routes/safe/component/Transactions/Collapsed/Confirmations.jsx +++ b/src/routes/safe/component/Transactions/Collapsed/Confirmations.jsx @@ -29,7 +29,7 @@ type Props = Open & WithStyles & { const GnoConfirmation = ({ owner, type, hash }: ConfirmationProps) => { const address = owner.get('address') - const confirmed = type === 'confirmed' + const confirmed = type === 'confirmation' const text = confirmed ? 'Confirmed' : 'Not confirmed' const hashText = confirmed ? `Confirmation hash: ${hash}` : undefined diff --git a/src/routes/safe/component/Transactions/index.jsx b/src/routes/safe/component/Transactions/index.jsx index f2ef4b2f..f3f86404 100644 --- a/src/routes/safe/component/Transactions/index.jsx +++ b/src/routes/safe/component/Transactions/index.jsx @@ -27,7 +27,7 @@ class Transactions extends React.Component { const ownerAddress = confirmation.get('owner').get('address') const samePerson = sameAddress(ownerAddress, userAddress) - return samePerson && confirmation.get('type') === 'confirmed' + return samePerson && confirmation.get('type') === 'confirmation' }).count() > 0 if (userHasAlreadyConfirmed) {