Skip to content

Commit 07e9bdc

Browse files
NickGerlemanfacebook-github-bot
authored andcommitted
Remove chonky header for single modules (facebook#50672)
Summary: We have precious little screen real estate, esp in E2E tests where we get 320x192 dips. Let's clean this up. Changelog: [Internal] Reviewed By: cortinico, GijsWeterings Differential Revision: D72683491
1 parent e385ff6 commit 07e9bdc

File tree

2 files changed

+0
-115
lines changed

2 files changed

+0
-115
lines changed

packages/rn-tester/js/components/RNTTestDetails.js

-108
This file was deleted.

packages/rn-tester/js/components/RNTesterModuleContainer.js

-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import type {
1515

1616
import {type RNTesterTheme, RNTesterThemeContext} from './RNTesterTheme';
1717
import RNTPressableRow from './RNTPressableRow';
18-
import RNTTestDetails from './RNTTestDetails';
1918
import * as React from 'react';
2019
import {Platform, ScrollView, StyleSheet, Text, View} from 'react-native';
2120

@@ -80,12 +79,6 @@ export default function RNTesterModuleContainer(props: Props): React.Node {
8079

8180
return singleModule != null ? (
8281
<>
83-
<RNTTestDetails
84-
title={singleModule.title}
85-
description={singleModule.description}
86-
expect={singleModule.expect}
87-
theme={theme}
88-
/>
8982
{singleModule.scrollable === true ? (
9083
<ScrollView style={styles.examplesContainer} testID="example-container">
9184
<singleModule.render />

0 commit comments

Comments
 (0)