File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed
src/components/conformance/ResultsDisplay Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,7 @@ type SuiteDataProps = {
15
15
setSelectedTest : ( string ) => void ;
16
16
} ;
17
17
18
- export default function SuiteDataContainer (
19
- props : SuiteDataProps ,
20
- ) : JSX . Element {
18
+ export default function SuiteDataContainer ( props : SuiteDataProps ) : JSX . Element {
21
19
// Set the user's selected test to be displayed in the ViewPort.
22
20
const selectTest = ( testName : string ) => {
23
21
props . setSelectedTest ( testName ) ;
Original file line number Diff line number Diff line change @@ -16,9 +16,7 @@ type SuiteDisplayProps = {
16
16
setSelectedTest : ( string ) => void ;
17
17
} ;
18
18
19
- export default function SuiteDisplay (
20
- props : SuiteDisplayProps ,
21
- ) : JSX . Element {
19
+ export default function SuiteDisplay ( props : SuiteDisplayProps ) : JSX . Element {
22
20
return (
23
21
< div className = { styles . suiteDisplay } >
24
22
{ props . currentSuite . suites ? (
Original file line number Diff line number Diff line change @@ -14,9 +14,7 @@ type ResultsNavProps = {
14
14
setFilterOption : ( string ) => void ;
15
15
} ;
16
16
17
- export default function ResultNavigation (
18
- props : ResultsNavProps ,
19
- ) : JSX . Element {
17
+ export default function ResultNavigation ( props : ResultsNavProps ) : JSX . Element {
20
18
return (
21
19
< div className = { styles . resultsNav } >
22
20
< div className = { styles . navSection } >
You can’t perform that action at this time.
0 commit comments