Skip to content

Commit 23b914e

Browse files
committed
final comments
1 parent 438267e commit 23b914e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/ui/src/app/routes/Export/components/Output/Output.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const Output: FC = () => {
3030

3131
return (
3232
<div className={styles['code-sample']}>
33-
{warnings.length > 0 && (
33+
{warnings.length > 0 ? (
3434
<ExpandableCard
3535
title="Warnings"
3636
expanded={warningsExpanded}
@@ -42,7 +42,7 @@ export const Output: FC = () => {
4242
))}
4343
</ul>
4444
</ExpandableCard>
45-
)}
45+
) : null}
4646
<div className={styles['code-block']}>
4747
<Button
4848
variant="icon"

packages/ui/src/resets.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,7 @@
6060
@mixin reset-form {
6161
margin: 0;
6262
}
63+
64+
@mixin p {
65+
margin: 0;
66+
}

0 commit comments

Comments
 (0)