Skip to content

Commit

Permalink
Merge pull request #346 from tonkeeper/fix/extension-tc
Browse files Browse the repository at this point in the history
Fix ton connect to extension problem
  • Loading branch information
KuznetsovNikita authored Jan 2, 2025
2 parents 14d030a + 5eddd64 commit 9e7be2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/extension/src/components/Notifications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 9e7be2c

Please sign in to comment.