Skip to content

Commit 2a4dd6d

Browse files
committed
npm run format
1 parent 7002ac4 commit 2a4dd6d

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

src/components/conformance/ResultsDisplay/components/SuiteDataContainer/index.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ type SuiteDataProps = {
1515
setSelectedTest: (string) => void;
1616
};
1717

18-
export default function SuiteDataContainer(
19-
props: SuiteDataProps,
20-
): JSX.Element {
18+
export default function SuiteDataContainer(props: SuiteDataProps): JSX.Element {
2119
// Set the user's selected test to be displayed in the ViewPort.
2220
const selectTest = (testName: string) => {
2321
props.setSelectedTest(testName);

src/components/conformance/ResultsDisplay/components/SuiteDisplay/index.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ type SuiteDisplayProps = {
1616
setSelectedTest: (string) => void;
1717
};
1818

19-
export default function SuiteDisplay(
20-
props: SuiteDisplayProps,
21-
): JSX.Element {
19+
export default function SuiteDisplay(props: SuiteDisplayProps): JSX.Element {
2220
return (
2321
<div className={styles.suiteDisplay}>
2422
{props.currentSuite.suites ? (

src/components/conformance/ResultsDisplay/nav.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ type ResultsNavProps = {
1414
setFilterOption: (string) => void;
1515
};
1616

17-
export default function ResultNavigation(
18-
props: ResultsNavProps,
19-
): JSX.Element {
17+
export default function ResultNavigation(props: ResultsNavProps): JSX.Element {
2018
return (
2119
<div className={styles.resultsNav}>
2220
<div className={styles.navSection}>

0 commit comments

Comments
 (0)