From 61c9b2d20348d5a4b3498bfa3366d19b07e1457a Mon Sep 17 00:00:00 2001 From: VH Date: Sun, 27 Aug 2023 21:09:28 +0700 Subject: [PATCH] Fix Back button is overlapping with notification bar on native devices --- src/pages/settings/Profile/LoungeAccessPage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/settings/Profile/LoungeAccessPage.js b/src/pages/settings/Profile/LoungeAccessPage.js index 9a0223a74e23..36bb692598fc 100644 --- a/src/pages/settings/Profile/LoungeAccessPage.js +++ b/src/pages/settings/Profile/LoungeAccessPage.js @@ -5,7 +5,7 @@ import ROUTES from '../../../ROUTES'; import * as Illustrations from '../../../components/Icon/Illustrations'; import ONYXKEYS from '../../../ONYXKEYS'; import userPropTypes from '../userPropTypes'; -import FullPageNotFoundView from '../../../components/BlockingViews/FullPageNotFoundView'; +import NotFoundPage from '../../ErrorPage/NotFoundPage'; import useLocalize from '../../../hooks/useLocalize'; import FeatureList from '../../../components/FeatureList'; import IllustratedHeaderPageLayout from '../../../components/IllustratedHeaderPageLayout'; @@ -39,7 +39,7 @@ function LoungeAccessPage({user}) { const {translate} = useLocalize(); if (!user.hasLoungeAccess) { - return ; + return ; } return (