Skip to content

Commit

Permalink
fix: wrong id placement on the h1 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
bydawen authored and arbrandes committed Nov 14, 2023
1 parent 90e8eee commit 7a299eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/bulk-email-tool/BulkEmailTool.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function BulkEmailTool() {
<Container size="md">
<BackToInstructor courseId={courseId} />
<div className="row pb-4.5">
<h1 className="text-primary-500" id="main-content">
<h1 className="text-primary-500">
<FormattedMessage
id="bulk.email.send.email.header"
defaultMessage="Send an email"
Expand Down
2 changes: 1 addition & 1 deletion src/components/page-container/PageContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default function PageContainer(props) {
courseTitle={courseMetadata.title}
/>
<div className="pb-3 container">
<main>
<main id="main-content">
{children}
</main>
</div>
Expand Down

0 comments on commit 7a299eb

Please sign in to comment.