Skip to content

Commit

Permalink
Minor edit
Browse files Browse the repository at this point in the history
  • Loading branch information
brickpop committed Feb 22, 2024
1 parent 1ad7f90 commit 228c5bb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions plugins/dualGovernance/components/proposal/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ const ProposalHeader: React.FC<ProposalHeaderProps> = ({
timeout: 4 * 1000,
});
} else {
addErrorAlert("Could not create the proposal");
console.error(error);
addErrorAlert("Could not execute the proposal");
}
return;
}
Expand All @@ -80,7 +81,7 @@ const ProposalHeader: React.FC<ProposalHeaderProps> = ({
} else if (!isConfirmed) return;

addAlert({
message: "Proposal created",
message: "Proposal executed",
description: "The transaction has been validated",
type: "success",
txHash: executeTxHash,
Expand Down

0 comments on commit 228c5bb

Please sign in to comment.