Skip to content

Commit bea0e4b

Browse files
committed
fix lint and formatting
1 parent 8f825bc commit bea0e4b

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/components/app/Report.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const Report: FC = () => {
1717
<FilteredDocuments />
1818
</section>
1919
<section>
20-
<TestRunHooks/>
20+
<TestRunHooks />
2121
</section>
2222
</article>
2323
)

src/components/app/TestRunHooks.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@ export const TestRunHooks: FC = () => {
1515
<ol className={styles.hooks}>
1616
{hooks.map(({ testRunHookFinished, hook }) => {
1717
return (
18-
<TestRunHookOutcome
19-
key={hook.id}
20-
hook={hook}
21-
testRunHookFinished={testRunHookFinished}
22-
/>
18+
<TestRunHookOutcome key={hook.id} hook={hook} testRunHookFinished={testRunHookFinished} />
2319
)
2420
})}
2521
</ol>

0 commit comments

Comments
 (0)