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

create the Expensify card page #26915

Merged
merged 26 commits into from
Sep 26, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
5823d37
create the Expensify card page
pasyukevich Sep 6, 2023
453e747
feat(expensify card): add screen routing
pac-guerreiro Sep 8, 2023
8af9818
fix(expensify card): card holder label style
pac-guerreiro Sep 8, 2023
e3c1050
refactor(expensify card): apply code guidelines
pac-guerreiro Sep 8, 2023
20d1268
feat(expensify card): add virtual and physical card number rows
pac-guerreiro Sep 14, 2023
33cc565
fix type for route
pasyukevich Sep 14, 2023
597b319
update styles for card
pasyukevich Sep 14, 2023
9a04cf0
fix upper cased domain
pasyukevich Sep 14, 2023
1040f6b
adjust displayed card data
pasyukevich Sep 14, 2023
27e242d
fix styles file after rebase
pasyukevich Sep 14, 2023
c57bb86
fix conditional rendering to a boolean
pasyukevich Sep 15, 2023
4161195
fix translation for card page
pasyukevich Sep 15, 2023
fc90f3d
fix crash with empty card list state
pasyukevich Sep 15, 2023
b043af1
add showing not found page in case of empty cards
pasyukevich Sep 18, 2023
f0595c0
Merge branch 'main' into feature/expensify-card
pasyukevich Sep 19, 2023
33325ce
update card holder name width
pasyukevich Sep 20, 2023
c864fe7
update prop types for card page
pasyukevich Sep 20, 2023
901301a
fix empty card handling
pasyukevich Sep 21, 2023
557bccc
move style constants to variables
pasyukevich Sep 21, 2023
137d1b9
Merge branch 'main' into feature/expensify-card
pasyukevich Sep 21, 2023
29c6685
update card types with new PAN
pasyukevich Sep 21, 2023
48debed
add maskCard helper to create mask card with PAN
pasyukevich Sep 21, 2023
fe87eb4
Merge branch 'main' into feature/expensify-card
JKobrynski Sep 22, 2023
2f92e75
Merge branch 'main' into feature/expensify-card
pasyukevich Sep 25, 2023
a22a2d6
add testID for expensify card page
pasyukevich Sep 25, 2023
a823f1a
add doc for session
pasyukevich Sep 25, 2023
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
add testID for expensify card page
  • Loading branch information
pasyukevich committed Sep 25, 2023
commit a22a2d69d8733e881acefad0413cf0664cd10725
5 changes: 4 additions & 1 deletion src/pages/settings/Wallet/ExpensifyCardPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ function ExpensifyCardPage({
const formattedAvailableSpendAmount = CurrencyUtils.convertToDisplayString(physicalCard.availableSpend || virtualCard.availableSpend || 0);

return (
<ScreenWrapper includeSafeAreaPaddingBottom={false}>
<ScreenWrapper
includeSafeAreaPaddingBottom={false}
testID={ExpensifyCardPage.displayName}
>
{({safeAreaPaddingBottomStyle}) => (
<>
<HeaderWithBackButton
Expand Down