-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Add lounge access page for users who qualify for lounge membership #20881
Changes from 12 commits
c20a006
a4d524f
2c480b3
43ee7c1
0e3f048
a9ab57e
198cb8c
9dd6f61
931f9a1
928e644
eb2d741
cad43f3
028be2f
13ac67c
9d9d2a1
ebec0eb
2dcce6e
b0c4b69
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ import Abracadabra from '../../../assets/images/product-illustrations/abracadabr | |
import BankArrowPink from '../../../assets/images/product-illustrations/bank-arrow--pink.svg'; | ||
import BankMouseGreen from '../../../assets/images/product-illustrations/bank-mouse--green.svg'; | ||
import BankUserGreen from '../../../assets/images/product-illustrations/bank-user--green.svg'; | ||
import ChatBubbles from '../../../assets/images/simple-illustrations/simple-illustration__chatbubbles.svg'; | ||
import CoffeeMug from '../../../assets/images/simple-illustrations/simple-illustration__coffeemug.svg'; | ||
import ConciergeBlue from '../../../assets/images/product-illustrations/concierge--blue.svg'; | ||
import ConciergeExclamation from '../../../assets/images/product-illustrations/concierge--exclamation.svg'; | ||
import CreditCardsBlue from '../../../assets/images/product-illustrations/credit-cards--blue.svg'; | ||
|
@@ -18,6 +20,7 @@ import ReceiptYellow from '../../../assets/images/product-illustrations/receipt- | |
import RocketBlue from '../../../assets/images/product-illustrations/rocket--blue.svg'; | ||
import RocketOrange from '../../../assets/images/product-illustrations/rocket--orange.svg'; | ||
import SafeBlue from '../../../assets/images/product-illustrations/safe.svg'; | ||
import SanFrancisco from '../../../assets/images/simple-illustrations/simple-illustration__sanfrancisco.svg'; | ||
import TadaYellow from '../../../assets/images/product-illustrations/tada--yellow.svg'; | ||
import TadaBlue from '../../../assets/images/product-illustrations/tada--blue.svg'; | ||
import ToddBehindCloud from '../../../assets/images/product-illustrations/todd-behind-cloud.svg'; | ||
|
@@ -28,6 +31,7 @@ import PinkBill from '../../../assets/images/simple-illustrations/simple-illustr | |
import CreditCardsNew from '../../../assets/images/simple-illustrations/simple-illustration__credit-cards.svg'; | ||
import InvoiceBlue from '../../../assets/images/simple-illustrations/simple-illustration__invoice.svg'; | ||
import LockOpen from '../../../assets/images/simple-illustrations/simple-illustration__lockopen.svg'; | ||
import Lounge from '../../../assets/images/product-illustrations/lounge-top-bg.svg'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. NAB/nit picks, but 1) I wonder if we should just name this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SGTM! |
||
import Luggage from '../../../assets/images/simple-illustrations/simple-illustration__luggage.svg'; | ||
import MoneyIntoWallet from '../../../assets/images/simple-illustrations/simple-illustration__moneyintowallet.svg'; | ||
import MoneyWings from '../../../assets/images/simple-illustrations/simple-illustration__moneywings.svg'; | ||
|
@@ -46,6 +50,8 @@ export { | |
BankArrowPink, | ||
BankMouseGreen, | ||
BankUserGreen, | ||
ChatBubbles, | ||
CoffeeMug, | ||
ConciergeBlue, | ||
ConciergeExclamation, | ||
CreditCardsBlue, | ||
|
@@ -61,6 +67,7 @@ export { | |
ReceiptYellow, | ||
RocketBlue, | ||
RocketOrange, | ||
SanFrancisco, | ||
SafeBlue, | ||
TadaYellow, | ||
TadaBlue, | ||
|
@@ -72,6 +79,7 @@ export { | |
CreditCardsNew, | ||
InvoiceBlue, | ||
LockOpen, | ||
Lounge, | ||
Luggage, | ||
MoneyIntoWallet, | ||
MoneyWings, | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -477,6 +477,13 @@ const SettingsModalStackNavigator = createModalStackNavigator([ | |||||
}, | ||||||
name: 'Settings_App_Download_Links', | ||||||
}, | ||||||
{ | ||||||
getComponent: () => { | ||||||
const SettingsLoungeAccessPage = require('../../../pages/settings/LoungeAccessPage').default; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's nest this under
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thoughts on this one @yuwenmemon? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh sorry missed this! Sounds good one sec... |
||||||
return SettingsLoungeAccessPage; | ||||||
}, | ||||||
name: 'Settings_Lounge_Access', | ||||||
}, | ||||||
{ | ||||||
getComponent: () => { | ||||||
const SettingsPaymentsPage = require('../../../pages/settings/Payments/PaymentsPage').default; | ||||||
|
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.
@narefyev91 - I think this file is why there's so many line changes 😅
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.
Yep - it's cause of the SVG files