From 5eddd6437a771c617b8aa0b17a49494473ae2358 Mon Sep 17 00:00:00 2001 From: siandreev Date: Fri, 27 Dec 2024 20:10:26 +0100 Subject: [PATCH] fix: ton connect to extension --- apps/extension/src/components/Notifications.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }