Skip to content

Commit

Permalink
Change win notification text
Browse files Browse the repository at this point in the history
  • Loading branch information
Misieq01 committed Sep 24, 2024
1 parent 8f14dbf commit 1de81b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hooks/useNotifications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { useCallback } from 'react';
export const useNotifcations = () => {
const winNotification = useCallback(async (winAmount: string) => {
await invoke('trigger_notification', {
summary: 'You won!',
body: `You won ${winAmount}!`,
summary: 'Congratulations !',
body: `You won a block! We are sending you rewards of ${winAmount} tXTM!`,
});
}, []);

Expand Down

0 comments on commit 1de81b4

Please sign in to comment.