From 40346f6efb42ebf21ead40bf8ac7f126a605e856 Mon Sep 17 00:00:00 2001 From: Wan Qi Chen <495709+wa0x6e@users.noreply.github.com> Date: Mon, 1 Apr 2024 12:18:30 +0400 Subject: [PATCH] fix: put back commented body --- src/providers/walletconnectNotify.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/providers/walletconnectNotify.ts b/src/providers/walletconnectNotify.ts index 3809156..74e2b03 100644 --- a/src/providers/walletconnectNotify.ts +++ b/src/providers/walletconnectNotify.ts @@ -95,12 +95,12 @@ function formatMessage(event: Event, proposal) { if (!space) return null; const notificationType = WALLETCONNECT_NOTIFICATION_TYPE; - // const notificationBody = `🟢 New proposal on ${space.name} @${space.id}\n\n`; + const notificationBody = `🟢 New proposal on ${space.name} @${space.id}\n\n`; const url = `${proposal.link}?app=web3inbox`; return { title: truncate(proposal.title, 64), - // body: notificationBody, + body: notificationBody, url, type: notificationType };