Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
NSeydoux committed Dec 19, 2024
1 parent 4159eb3 commit f4ec332
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions e2e/browser/test-app/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
export default function TestAppLayout({
children,
}: {
children: React.ReactNode
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>
<main>{children}</main>
</body>
</html>
)
);
}
2 changes: 1 addition & 1 deletion e2e/browser/test-app/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use client';
"use client";

import React, { useState, useEffect } from "react";
import {
Expand Down

0 comments on commit f4ec332

Please sign in to comment.