Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/MoneyReportHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {View} from 'react-native';
import HeaderLoadingBar from './HeaderLoadingBar';
import HeaderWithBackButton from './HeaderWithBackButton';
import MoneyReportHeaderActions from './MoneyReportHeaderActions';
import {ExportDownloadStatusProvider} from './MoneyReportHeaderActions/ExportDownloadStatusContext';
import {ExportDownloadStatusProvider} from './MoneyReportHeaderActions/ExportDownloadStatusProvider';
import MoneyReportHeaderModals from './MoneyReportHeaderModals';
import MoneyReportHeaderMoreContent from './MoneyReportHeaderMoreContent';
import MoneyRequestReportNavigation from './MoneyRequestReportView/MoneyRequestReportNavigation';
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useExportActions.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type {DropdownOption} from '@components/ButtonWithDropdownMenu/types';
import {useExportDownloadStatus} from '@components/MoneyReportHeaderActions/ExportDownloadStatusContext';
import {useExportDownloadStatus} from '@components/MoneyReportHeaderActions/ExportDownloadStatusProvider';
import type {PopoverMenuItem} from '@components/PopoverMenu';

import {exportReceiptsToZip} from '@libs/actions/Export';
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/hooks/useExportActionsTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jest.mock('@libs/actions/Link', () => ({
openOldDotLink: jest.fn(),
}));

jest.mock('@components/MoneyReportHeaderActions/ExportDownloadStatusContext', () => ({
jest.mock('@components/MoneyReportHeaderActions/ExportDownloadStatusProvider', () => ({
useExportDownloadStatus: () => ({trackExport: mockTrackExport}),
}));

Expand Down
Loading