From 1130fa94ce16b16ce75ad6a4b586f3abf99a63b8 Mon Sep 17 00:00:00 2001 From: Misieq01 Date: Thu, 19 Sep 2024 09:52:50 +0200 Subject: [PATCH] Change win notification text --- src/hooks/useNotifications.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hooks/useNotifications.ts b/src/hooks/useNotifications.ts index 8daf53af5..8b3b9e967 100644 --- a/src/hooks/useNotifications.ts +++ b/src/hooks/useNotifications.ts @@ -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!`, }); }, []);