Skip to content

Commit 1a97b70

Browse files
Fix lint errors from origin/main merge
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 2a35155 commit 1a97b70

3 files changed

Lines changed: 1 addition & 5 deletions

File tree

src/components/ReimbursementAccountLoadingIndicator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function ReimbursementAccountLoadingIndicator({onBackButtonPress}: Reimbursement
2121
return (
2222
<ScreenWrapper
2323
shouldShowOfflineIndicator={false}
24-
style={[StyleSheet.absoluteFillObject, styles.reimbursementAccountFullScreenLoading]}
24+
style={[StyleSheet.absoluteFill, styles.reimbursementAccountFullScreenLoading]}
2525
testID="ReimbursementAccountLoadingIndicator"
2626
>
2727
<HeaderWithBackButton

tests/ui/WorkspaceMoreFeaturesPageTest.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ jest.mock('@components/Modal/ReanimatedModal', () => {
5353
};
5454
});
5555

56-
// eslint-disable-next-line @typescript-eslint/naming-convention
5756
jest.mock('@hooks/useIsPolicyConnectedToUberReceiptPartner', () => ({__esModule: true, default: jest.fn(() => false)}));
5857

5958
jest.mock('@libs/CardUtils', () => {

tests/unit/ReportActionsListHeaderTest.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const REPORT_ID = '42';
77
const mockUseOnyx = jest.fn<unknown[], [string]>();
88

99
jest.mock('@hooks/useOnyx', () => ({
10-
// eslint-disable-next-line @typescript-eslint/naming-convention
1110
__esModule: true,
1211
default: (key: string) => mockUseOnyx(key),
1312
}));
@@ -16,7 +15,6 @@ jest.mock('@pages/home/report/ConciergeThinkingMessage', () => {
1615
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
1716
const {View: MockView} = require('react-native');
1817
return {
19-
// eslint-disable-next-line @typescript-eslint/naming-convention
2018
__esModule: true,
2119
default: () => <MockView testID="ConciergeThinkingMessage" />,
2220
};
@@ -26,7 +24,6 @@ jest.mock('@pages/inbox/report/ListBoundaryLoader', () => {
2624
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
2725
const {View: MockView} = require('react-native');
2826
return {
29-
// eslint-disable-next-line @typescript-eslint/naming-convention
3027
__esModule: true,
3128
default: () => <MockView testID="ListBoundaryLoader" />,
3229
};

0 commit comments

Comments
 (0)