Skip to content

Commit 41cf3d4

Browse files
authored
fix(lint): 세미콜론 추가
1 parent 38dfe34 commit 41cf3d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ export const metadata = {
88
export default function RootLayout({
99
children,
1010
}: {
11-
children: React.ReactNode
11+
children: React.ReactNode;
1212
}) {
1313
return (
1414
<html lang="en">
1515
<body>
1616
<Provider>{children}</Provider>
1717
</body>
1818
</html>
19-
)
19+
);
2020
}

0 commit comments

Comments
 (0)