Skip to content

Commit 40b48c8

Browse files
authored
Merge pull request #8959 from TylerAPfledderer/fix/tutorials-template-overflow
Fix: Replace `div` with fragment in `tutorial` template
2 parents ff31c5b + e04c0be commit 40b48c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/templates/tutorial.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ const TutorialPage = ({
174174
const hideEditButton = !!mdx.frontmatter.hideEditButton
175175
const absoluteEditPath = `${editContentUrl}${relativePath}`
176176
return (
177-
<div>
177+
<>
178178
{showPostMergeBanner && (
179179
<PostMergeBanner
180180
translationString={postMergeBannerTranslationString!}
@@ -213,7 +213,7 @@ const TutorialPage = ({
213213
/>
214214
)}
215215
</Page>
216-
</div>
216+
</>
217217
)
218218
}
219219

0 commit comments

Comments
 (0)