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

feat: Mass payouts #5042

Open
wants to merge 19 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d69d1a1
refactor: update useRemoteSafeApps to accept an app name as alternati…
tmjssz Feb 7, 2025
281584a
feat(TokenTransfer): refactor to support multiple recipients in token…
tmjssz Feb 12, 2025
de7bbf6
feat(TokenTransfer): implement ReviewRecipientRow component for recip…
tmjssz Feb 12, 2025
734002f
feat(TokenTransfer): enhance validation and handling for multi-recipi…
tmjssz Feb 17, 2025
278c452
fix: linter issues
tmjssz Feb 17, 2025
3272cab
feat: targeted rollout for mass payouts
tmjssz Feb 18, 2025
4a0830b
fix: show link to CSV Airdrop app only if it is active for the select…
tmjssz Feb 18, 2025
089f160
test(validation): add test for custom error messages in validateLimit…
tmjssz Feb 19, 2025
40f1f09
fix(TokenAmountInput): safely call onChangeAmount with optional chaining
tmjssz Feb 20, 2025
eeec1c0
fix(CreateTokenTransfer): improve error message for insufficient balance
tmjssz Feb 20, 2025
cdb5f40
fix(TokenTransfer): replace direct address comparison with sameAddres…
tmjssz Feb 20, 2025
ce65d72
fix(TokenAmountInput): reset field with default value from form state
tmjssz Feb 20, 2025
30a801e
refactor: change groupName prop to `fieldArray`
tmjssz Feb 21, 2025
6ebc2d9
fix(ReviewRecipientRow): use sameAddress function for address comparison
tmjssz Feb 21, 2025
63e46ea
fix(CreateTransactionPage): update recipient input selectors for new …
tmjssz Feb 21, 2025
4e04c2b
fix(TokenAmountInput): destructure getValues from separate typed useF…
tmjssz Feb 24, 2025
4c28a60
fix: update button text to use lowercase for consistency
tmjssz Feb 24, 2025
b871d17
Merge branch 'dev' into feat/mass-payouts
tmjssz Feb 27, 2025
7f9fc60
fix: revert unintended changes
tmjssz Feb 27, 2025
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
Prev Previous commit
Next Next commit
fix: update button text to use lowercase for consistency
  • Loading branch information
tmjssz committed Feb 24, 2025
commit 4c28a602dafd05fab1ad9a11e166d434322f432f
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export const CreateTokenTransfer = ({
startIcon={<SvgIcon component={AddIcon} inheritViewBox fontSize="small" />}
size="large"
>
Add Recipient
Add recipient
</Button>
<Typography
variant="body2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const RecipientRow = ({ fieldArray, removable = true, remove, disableSpen
startIcon={<SvgIcon component={DeleteIcon} inheritViewBox fontSize="small" />}
size="compact"
>
Remove Recipient
Remove recipient
</Button>
</Box>
)}
Expand Down
Loading