Skip to content

Commit 3140c1e

Browse files
Remove orphan JSX {} lines after lint comment removal
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent ed32912 commit 3140c1e

15 files changed

Lines changed: 0 additions & 15 deletions

File tree

src/components/AccountSwitcher.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,6 @@ function AccountSwitcher({isScreenFocused}: AccountSwitcherProps) {
223223

224224
return (
225225
<>
226-
{}
227226
<TooltipToRender {...tooltipProps}>
228227
<PressableWithFeedback
229228
accessible

src/components/AnimatedFlatListWithCellRenderer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ const createCellRendererComponent = <Item,>(CellRendererComponentProp?: CellRend
2525
onLayout={props.onLayout}
2626
style={CellRendererComponentProp ? undefined : props.style}
2727
>
28-
{}
2928
{CellRendererComponentProp ? <CellRendererComponentProp {...props}>{props.children}</CellRendererComponentProp> : props.children}
3029
</Animated.View>
3130
);

src/components/AutoCompleteSuggestions/AutoCompleteSuggestionsPortal/index.native.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ function AutoCompleteSuggestionsPortal<TSuggestion>({
2727
<Portal hostName="suggestions">
2828
<TransparentOverlay onPress={resetSuggestions} />
2929
<View style={styles}>
30-
{}
3130
<BaseAutoCompleteSuggestions<TSuggestion>
3231
width={width}
3332
{...props}

src/components/Form/FormProvider.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,6 @@ function FormProvider({
522522

523523
return (
524524
<FormContext.Provider value={value}>
525-
{}
526525
<FormWrapper
527526
{...rest}
528527
formID={formID}

src/components/HTMLEngineProvider/HTMLRenderers/PreRenderer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ function PreRenderer({TDefaultRenderer, onPressIn, onPressOut, onLongPress, ...d
7070
>
7171
<View>
7272
<Text style={{fontSize}}>
73-
{}
7473
<TDefaultRenderer {...defaultRendererProps} />
7574
</Text>
7675
</View>

src/components/MenuItem.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,6 @@ function MenuItem({
904904
]}
905905
>
906906
{!!leftComponent && <View style={[styles.mr3]}>{leftComponent}</View>}
907-
{}
908907
{isIDPassed && (
909908
<ReportActionAvatars
910909
subscriptAvatarBorderColor={getSubscriptAvatarBackgroundColor(isHovered, pressed, theme.hoverComponentBG, theme.buttonHoveredBG)}

src/components/Pressable/PressableWithDelayToggle.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ function PressableWithDelayToggle({
153153
text={tooltipTexts}
154154
shouldRender
155155
>
156-
{}
157156
<PressableWithoutFeedback
158157
tabIndex={-1}
159158
accessible={false}

src/components/ReportActionAvatars/ReportActionAvatar.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ function ProfileAvatar(props: Parameters<typeof Avatar>[0] & {useProfileNavigati
9595
accessibilityRole={CONST.ROLE.BUTTON}
9696
sentryLabel={CONST.SENTRY_LABEL.REPORT.REPORT_ACTION_AVATAR}
9797
>
98-
{}
9998
<Avatar {...{...props, useProfileNavigationWrapper: undefined}} />
10099
</PressableWithoutFocus>
101100
);

src/components/ThreeDotsMenu/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ function ThreeDotsMenu({
153153
return (
154154
<>
155155
<View>
156-
{}
157156
<TooltipToRender {...tooltipProps}>
158157
<PressableWithoutFeedback
159158
onPress={onThreeDotsPress}

src/libs/Navigation/AppNavigator/Navigators/TabNavigator.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ function withSuspense<P extends Record<string, unknown>>(LazyComponent: React.La
5353
function SuspenseWrapper(props: P) {
5454
return (
5555
<Suspense fallback={<LazyFallback tabSpanName={tabSpanName} />}>
56-
{}
5756
<LazyComponent {...props} />
5857
</Suspense>
5958
);

0 commit comments

Comments
 (0)