Skip to content

Commit

Permalink
feat(demo): use same words as NervDAO
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanssen0 committed Oct 8, 2024
1 parent 1720d5a commit 7c49452
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/demo/src/app/connected/(tools)/NervosDao/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ function DaoButton({ dao }: { dao: ccc.Cell }) {
}
const [withdrawTx, withdrawHeader] = infos[3];
if (!withdrawTx?.blockHash) {
error("Unexpected empty withdraw tx block info");
error("Unexpected empty redeem tx block info");
return;
}
if (!depositTx.blockHash) {
Expand Down Expand Up @@ -267,7 +267,7 @@ function DaoButton({ dao }: { dao: ccc.Cell }) {
epoch
</div>
) : undefined}
<span>{isNew ? "Withdraw" : "Claim"}</span>
<span>{isNew ? "Redeem" : "Withdraw"}</span>
</div>
</BigButton>
);
Expand Down

0 comments on commit 7c49452

Please sign in to comment.