Skip to content

Commit

Permalink
Removes now unnecessary element tag from web based tests
Browse files Browse the repository at this point in the history
  • Loading branch information
raugfer committed Sep 9, 2024
1 parent caa93de commit 1bbe2b5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const metadata = {
export default function RootLayout({ children }) {
return (
<html lang="en">
<body id="dynamic-content">
<body>
{children}
</body>
</html>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ async function main() {
const element = document.createElement('pre');
element.textContent = message;
document.body.appendChild(element);
document.body.id = 'dynamic-content';
}

main()
Expand Down

0 comments on commit 1bbe2b5

Please sign in to comment.