Skip to content

Commit

Permalink
fixes indent
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjoern Weide committed Jan 31, 2025
1 parent aaee6ba commit d4afef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blocks/header/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export default async function decorate(block) {
const h1s = fragment.querySelectorAll('h1');
h1s.forEach((h1) => {
while (h1.firstChild) {
h1.parentNode.insertBefore(h1.firstChild, h1);
h1.parentNode.insertBefore(h1.firstChild, h1);
}
h1.parentNode.removeChild(h1);
});
Expand Down

0 comments on commit d4afef6

Please sign in to comment.