Skip to content

Commit 7bc726c

Browse files
authored
Merge pull request #1356 from ajgreenb/prune-redundant-check
Remove redundant null-check from Instructions.jsx
2 parents a98a444 + f28e3de commit 7bc726c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Instructions.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default function Instructions({instructions, isOpen}) {
1212
className="layout__instructions"
1313
>
1414
<div className="instructions">
15-
{instructions ? markdownToReact(instructions) : null}
15+
{markdownToReact(instructions)}
1616
</div>
1717
</div>
1818
);

0 commit comments

Comments
 (0)