Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Update the Assigned Cards Section of the Wallet Page #38998
Update the Assigned Cards Section of the Wallet Page #38998
Changes from 24 commits
0515ffb
ecdcf48
804005a
71c86a2
13674cd
e5d8cc5
a26532f
ecd7c73
6bf60e9
a10788e
bc9ce69
c19eb59
ae6f359
24321a9
70d02e4
55bed2d
5b9ad8c
a8454dc
4f6ee19
0486463
f989cea
f114894
d542600
c7a0f12
0458752
f915905
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Error is not cleared when page is reloaded, #51396
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be good to use
cardID
as string (likecardToBeIssued?.cardID?.toString() ?? ‘’
) instead of callingtoString
many times. We needcardID
as a number only inrequestPhysicalExpensifyCard
where we can usecardToBeIssued?.cardID ?? 0
. This will make the code look neater too. What do you think?