diff --git a/apps/extension/src/components/Notifications.tsx b/apps/extension/src/components/Notifications.tsx index ce5e7289..1050c813 100644 --- a/apps/extension/src/components/Notifications.tsx +++ b/apps/extension/src/components/Notifications.tsx @@ -52,7 +52,7 @@ export const Notifications = () => { } | null) => { if (!data) return; if (result) { - sendBackground.message('approveRequest', { id: data.id, payload: result }); + sendBackground.message('approveRequest', { id: data.id, payload: result.replyItems }); } else { sendBackground.message('rejectRequest', data.id); }