From 9d856c5f7de0bbec791f969d866f8528dbdfc7d3 Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Wed, 8 Jun 2022 12:07:05 +0100 Subject: [PATCH] add compound success case --- nym-wallet/src/components/Delegation/DelegationModal.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nym-wallet/src/components/Delegation/DelegationModal.tsx b/nym-wallet/src/components/Delegation/DelegationModal.tsx index 91fd474730..76e1828acf 100644 --- a/nym-wallet/src/components/Delegation/DelegationModal.tsx +++ b/nym-wallet/src/components/Delegation/DelegationModal.tsx @@ -15,6 +15,8 @@ const actionToHeader = (action: ActionType): string => { return 'Delegation complete'; case 'undelegate': return 'Undelegation complete'; + case 'compound': + return 'Undelegation complete'; } return 'Oh no! Something went wrong!'; };