diff --git a/src/languages/en.ts b/src/languages/en.ts
index 7cdce062faac5..5dde68de9a094 100755
--- a/src/languages/en.ts
+++ b/src/languages/en.ts
@@ -640,11 +640,8 @@ export default {
},
loungeAccessPage: {
loungeAccess: 'Lounge access',
- headline: 'You qualify for access to our exclusive lounges.',
- description: 'The Expensify Lounge is where a "high-end airport lounge" meets a vibrant "co-working space" optimized for like-minded individuals.',
- coffeePromo: 'Great coffee and cocktails',
- networkingPromo: 'Network with other members',
- viewsPromo: 'Incredible views of San Francisco',
+ headline: 'The Expensify Lounge is closed.',
+ description: "The Expensify Lounge in San Francisco is closed for the time being, but we'll update this page when it reopens!",
},
pronounsPage: {
pronouns: 'Pronouns',
diff --git a/src/languages/es.ts b/src/languages/es.ts
index 578e027e1d145..a2fe0aad102e4 100644
--- a/src/languages/es.ts
+++ b/src/languages/es.ts
@@ -634,12 +634,8 @@ export default {
},
loungeAccessPage: {
loungeAccess: 'Acceso a la sala vip',
- headline: 'Podrás acceder a nuestras salas vip exclusivas.',
- description:
- 'La sala vip Expensify es el punto de encuentro entre una "sala vip de aeropuerto de alta gama" y un vibrante "espacio de co-working" optimizado para personas con ideas afines.',
- coffeePromo: 'Buen café y buenos cócteles',
- networkingPromo: 'Conecta con otros miembros',
- viewsPromo: 'Increíbles vistas de San Francisco',
+ headline: 'La sala vip de Expensify está cerrada.',
+ description: 'La sala vip de Expensify está actualmente cerrada, pero actualizaremos esta página cuando vuelva a abrir.',
},
pronounsPage: {
pronouns: 'Pronombres',
diff --git a/src/pages/settings/Profile/LoungeAccessPage.js b/src/pages/settings/Profile/LoungeAccessPage.js
index 9c5c434639446..2be8d2c8b18a3 100644
--- a/src/pages/settings/Profile/LoungeAccessPage.js
+++ b/src/pages/settings/Profile/LoungeAccessPage.js
@@ -1,35 +1,19 @@
-import PropTypes from 'prop-types';
import React from 'react';
-import {View} from 'react-native';
import {withOnyx} from 'react-native-onyx';
-import Avatar from '@components/Avatar';
-import FeatureList from '@components/FeatureList';
-import * as Illustrations from '@components/Icon/Illustrations';
import IllustratedHeaderPageLayout from '@components/IllustratedHeaderPageLayout';
-import LinearGradient from '@components/LinearGradient';
import * as LottieAnimations from '@components/LottieAnimations';
import Text from '@components/Text';
import withCurrentUserPersonalDetails, {withCurrentUserPersonalDetailsDefaultProps, withCurrentUserPersonalDetailsPropTypes} from '@components/withCurrentUserPersonalDetails';
import useLocalize from '@hooks/useLocalize';
import compose from '@libs/compose';
-import * as LocalePhoneNumber from '@libs/LocalePhoneNumber';
import Navigation from '@libs/Navigation/Navigation';
-import * as UserUtils from '@libs/UserUtils';
import NotFoundPage from '@pages/ErrorPage/NotFoundPage';
import userPropTypes from '@pages/settings/userPropTypes';
import styles from '@styles/styles';
-import themeColors from '@styles/themes/default';
-import CONST from '@src/CONST';
import ONYXKEYS from '@src/ONYXKEYS';
import ROUTES from '@src/ROUTES';
const propTypes = {
- /** The session of the logged in person */
- session: PropTypes.shape({
- /** Email of the logged in person */
- email: PropTypes.string,
- }),
-
/** Current user details, which will hold whether or not they have Lounge Access */
user: userPropTypes,
@@ -37,26 +21,10 @@ const propTypes = {
};
const defaultProps = {
- session: {},
user: {},
...withCurrentUserPersonalDetailsDefaultProps,
};
-const menuItems = [
- {
- translationKey: 'loungeAccessPage.coffeePromo',
- icon: Illustrations.CoffeeMug,
- },
- {
- translationKey: 'loungeAccessPage.networkingPromo',
- icon: Illustrations.ChatBubbles,
- },
- {
- translationKey: 'loungeAccessPage.viewsPromo',
- icon: Illustrations.SanFrancisco,
- },
-];
-
function LoungeAccessPage(props) {
const {translate} = useLocalize();
@@ -64,46 +32,19 @@ function LoungeAccessPage(props) {
return ;
}
- const overlayContent = () => (
-
-
-
-
- {props.currentUserPersonalDetails.displayName ? props.currentUserPersonalDetails.displayName : LocalePhoneNumber.formatPhoneNumber(props.session.email)}
-
-
- {LocalePhoneNumber.formatPhoneNumber(props.session.email)}
-
-
-
- );
-
return (
Navigation.goBack(ROUTES.SETTINGS)}
illustration={LottieAnimations.ExpensifyLounge}
- overlayContent={overlayContent}
>
-
+
+ {translate('loungeAccessPage.headline')}
+
+ {translate('loungeAccessPage.description')}
);
}
@@ -115,9 +56,6 @@ LoungeAccessPage.displayName = 'LoungeAccessPage';
export default compose(
withCurrentUserPersonalDetails,
withOnyx({
- session: {
- key: ONYXKEYS.SESSION,
- },
user: {
key: ONYXKEYS.USER,
},