Skip to content

Commit

Permalink
Merge pull request #26035 from hoangzinh/df/25433
Browse files Browse the repository at this point in the history
Fix Back button is overlapping with notification bar on mobile devices
  • Loading branch information
marcaaron authored Aug 29, 2023
2 parents f194077 + 61c9b2d commit a5ab459
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 a5ab459

Please sign in to comment.