Skip to content

Commit d98127b

Browse files
NickGerlemanuffoltzl
authored and
uffoltzl
committed
Remove chonky header for single modules (facebook#50672)
Summary: Pull Request resolved: facebook#50672 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 fbshipit-source-id: 222a77f937dfb9dcceb627d8f084c58df7c07b56
1 parent 4f2f851 commit d98127b

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)