Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: change send transaction popup title/button #1672

Merged
merged 8 commits into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/sour-emus-train.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"fuels-wallet": patch
---

chore: change title/button text of Approve transaction screen
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
fetch-depth: 0

- name: CI Setup
uses: FuelLabs/github-actions/setups/node@master
uses: FuelLabs/github-actions/setups/node@58bcd91d7246e40938e1971be0b0fe35b253dff0
with:
node-version: 20.11.0
pnpm-version: 9.5.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const selectors = {
if (state.matches('txSuccess')) return 'Transaction sent';
if (state.matches('txFailed')) return 'Transaction failed';
if (state.matches('sendingTx')) return 'Sending transaction';
return 'Approve Transaction';
return 'Review Transaction';
},
origin: (state: TransactionRequestState) => state.context.input.origin,
originTitle: (state: TransactionRequestState) => state.context.input.title,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const TxApprove = () => {
isDisabled={ctx.shouldDisableApproveBtn}
onPress={ctx.handlers.approve}
>
Approve
Submit
</Button>
</>
)}
Expand Down
Loading