diff --git a/packages/DApp/src/components/NotificationsList.tsx b/packages/DApp/src/components/NotificationsList.tsx index b5593d5..1b8e8db 100644 --- a/packages/DApp/src/components/NotificationsList.tsx +++ b/packages/DApp/src/components/NotificationsList.tsx @@ -14,6 +14,10 @@ export function NotificationsList() { {notifications.map((notification) => { if ('receipt' in notification) { return notification.receipt.logs.map((log) => { + if (log.address !== votingContract.address) { + return + } + // this needs to be updated so it takes into account also interface of featuredVotingContract const parsedLog = votingContract.interface.parseLog(log)