Skip to content

Commit 92707c3

Browse files
authored
Merge pull request #60484 from Expensify/maxence-fleogrindpr
[NoQA] Fix lint error from GR to ND PR
2 parents 6c5d968 + 67c06c7 commit 92707c3

File tree

1 file changed

+1
-2
lines changed
  • src/pages/ReimbursementAccount/NonUSD/Finish

1 file changed

+1
-2
lines changed

src/pages/ReimbursementAccount/NonUSD/Finish/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React from 'react';
22
import {View} from 'react-native';
33
import {useOnyx} from 'react-native-onyx';
4-
import Button from '@components/Button';
54
import HeaderWithBackButton from '@components/HeaderWithBackButton';
65
import * as Expensicons from '@components/Icon/Expensicons';
76
import {ChatBubble} from '@components/Icon/Expensicons';
@@ -24,7 +23,7 @@ function Finish() {
2423
const {translate} = useLocalize();
2524
const {shouldUseNarrowLayout} = useResponsiveLayout();
2625

27-
const [reimbursementAccount] = useOnyx(ONYXKEYS.REIMBURSEMENT_ACCOUNT);
26+
const [reimbursementAccount] = useOnyx(ONYXKEYS.REIMBURSEMENT_ACCOUNT, {canBeMissing: true});
2827
const policyID = reimbursementAccount?.achData?.policyID;
2928

3029
const handleBackButtonPress = () => {

0 commit comments

Comments
 (0)