Skip to content

Commit 9b0cea4

Browse files
committed
fix: dedicated push copy for chainsyncrequest
Batch chain-sync pushes said 'Transaction Request — a transaction has been initiated on your wallet'. They now say 'Chain Sync Request — your Wallet is requesting to sync additional chains.'
1 parent 944f174 commit 9b0cea4

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/services/notificationService.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ async function sendNotificationKey(wkIdentity, data) {
5454
} else if (data.action === 'enterprisefluxnodestart') {
5555
title = 'Flux Node Start Request';
5656
body = 'An enterprise Flux node start requires your signature.';
57+
} else if (data.action === 'chainsyncrequest') {
58+
title = 'Chain Sync Request';
59+
body = 'Your Wallet is requesting to sync additional chains.';
5760
} else if (data.action === 'recoveryrequest') {
5861
title = 'Wallet Recovery Request';
5962
body =

0 commit comments

Comments
 (0)