Skip to content

Commit

Permalink
Fix Back button is overlapping with notification bar on native devices
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangzinh committed Aug 27, 2023
1 parent c029dc5 commit 61c9b2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/settings/Profile/LoungeAccessPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -39,7 +39,7 @@ function LoungeAccessPage({user}) {
const {translate} = useLocalize();

if (!user.hasLoungeAccess) {
return <FullPageNotFoundView shouldShow />;
return <NotFoundPage />;
}

return (
Expand Down

0 comments on commit 61c9b2d

Please sign in to comment.