Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: update HTML semantics
  • Loading branch information
Parkreiner committed Mar 13, 2025
commit 7d0903a439f74df82ae7d14f08e8add9b44006a6
4 changes: 2 additions & 2 deletions site/src/components/SettingsHeader/SettingsHeader.tsx
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we add a storybook for it covering the new variants?

Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const SettingsHeader: FC<HeaderProps> = ({
}) => {
const Header = titleHeaderLevel;
return (
<div className="flex flex-row justify-between align-baseline">
<hgroup className="flex flex-row justify-between align-baseline">
{/*
* The text-sm class only adjusts the size of the description, but
* we need to apply it here so that it combines with the max-w-prose
Expand Down Expand Up @@ -61,6 +61,6 @@ export const SettingsHeader: FC<HeaderProps> = ({
</a>
</Button>
)}
</div>
</hgroup>
);
};
Loading