Skip to content

Commit 3c4fcce

Browse files
authored
Merge pull request Expensify#66781 from allgandalf/fixBrokenMain
[No QA]: Fix Broken Main
2 parents d959b62 + 0b4d5b1 commit 3c4fcce

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/pages/iou/request/step/IOURequestStepTaxAmountPage.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,6 @@ function IOURequestStepTaxAmountPage({
5656
const textInput = useRef<BaseTextInputRef | null>(null);
5757
const isEditing = action === CONST.IOU.ACTION.EDIT;
5858
const isEditingSplitBill = isEditing && iouType === CONST.IOU.TYPE.SPLIT;
59-
const [splitDraftTransaction] = useOnyx(`${ONYXKEYS.COLLECTION.SPLIT_TRANSACTION_DRAFT}${transactionID}`, {canBeMissing: true});
60-
const [policy] = useOnyx(`${ONYXKEYS.COLLECTION.POLICY}${report?.policyID}`, {canBeMissing: true});
61-
const [policyCategories] = useOnyx(`${ONYXKEYS.COLLECTION.POLICY_CATEGORIES}${report?.policyID}`, {canBeMissing: true});
62-
const [policyTags] = useOnyx(`${ONYXKEYS.COLLECTION.POLICY_TAGS}${report?.policyID}`, {canBeMissing: true});
6359
const focusTimeoutRef = useRef<NodeJS.Timeout | undefined>(undefined);
6460

6561
const currentTransaction = isEditingSplitBill && !isEmptyObject(splitDraftTransaction) ? splitDraftTransaction : transaction;

0 commit comments

Comments
 (0)