Skip to content

Commit

Permalink
Merge pull request #19 from CambioML/jojo-branch
Browse files Browse the repository at this point in the history
remove semicolon from next.config.js
  • Loading branch information
Cambio ML authored Jan 26, 2024
2 parents 18867f0 + d8e778a commit 11154ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ const font = Lato({
});

export default function RootLayout({ children }: { children: React.ReactNode }) {
// prettier-ignore
return (
<html lang="en">
<body className={font.className}>
Expand All @@ -32,5 +31,5 @@ export default function RootLayout({ children }: { children: React.ReactNode })
</div>
</body>
</html>
)
);
}
3 changes: 2 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ const nextConfig = {
images: { unoptimized: true },
};

module.exports = nextConfig;
//prettier-ignore
module.exports = nextConfig

0 comments on commit 11154ff

Please sign in to comment.