Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangzinh committed Sep 29, 2023
1 parent 442d8a7 commit 00c0089
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/BlockingViews/FullPageNotFoundView.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import HeaderWithBackButton from '../HeaderWithBackButton';
import Navigation from '../../libs/Navigation/Navigation';
import variables from '../../styles/variables';
import styles from '../../styles/styles';
import ROUTES from '../../ROUTES';
import useLocalize from '../../hooks/useLocalize';
import ROUTES from '../../ROUTES';

Expand Down
5 changes: 4 additions & 1 deletion src/pages/ReportWelcomeMessagePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ function ReportWelcomeMessagePage(props) {
);

return (
<ScreenWrapper testID={ReportWelcomeMessagePage.displayName} onBackButtonPress={() => Navigation.goBack(ROUTES.getReportSettingsRoute(props.report.reportID))}>
<ScreenWrapper
testID={ReportWelcomeMessagePage.displayName}
onBackButtonPress={() => Navigation.goBack(ROUTES.getReportSettingsRoute(props.report.reportID))}
>
<FullPageNotFoundView shouldShow={!PolicyUtils.isPolicyAdmin(props.policy)}>
<HeaderWithBackButton title={props.translate('welcomeMessagePage.welcomeMessage')} />
<Form
Expand Down

0 comments on commit 00c0089

Please sign in to comment.