Skip to content

Commit

Permalink
fix: use correct text for VoteProposal notification event (#1401)
Browse files Browse the repository at this point in the history
  • Loading branch information
jurevans authored Dec 12, 2024
1 parent 60ecdfc commit 3cf8514
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/namadillo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@namada/namadillo",
"version": "1.0.3",
"version": "1.0.4",
"description": "Namadillo",
"repository": "https://github.com/anoma/namada-interface/",
"author": "Heliax Dev <[email protected]>",
Expand Down
8 changes: 4 additions & 4 deletions apps/namadillo/src/hooks/useTransactionNotifications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@ export const useTransactionNotifications = (): void => {
dispatchNotification({
id,
type: "error",
title: "Staking transaction failed",
description: <>Your vote transaction has failed.</>,
title: "Governance transaction failed",
description: <>Your governance transaction has failed.</>,
details: e.detail.error?.message,
});
});
Expand All @@ -338,8 +338,8 @@ export const useTransactionNotifications = (): void => {
clearPendingNotifications(id);
dispatchNotification({
id,
title: "Staking transaction succeeded",
description: `Your vote transaction has succeeded`,
title: "Governance transaction succeeded",
description: `Your governance transaction has succeeded`,
type: "success",
});
});
Expand Down

1 comment on commit 3cf8514

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.