Skip to content

Commit

Permalink
fix lint + build
Browse files Browse the repository at this point in the history
  • Loading branch information
RPDeshaies committed Sep 11, 2023
1 parent f012671 commit a3214ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": "next",
"rules": {
"react-hooks/exhaustive-deps": "off",
"@next/next/no-img-element": "off"
"@next/next/no-img-element": "off",
"@next/next/no-page-custom-font": "off"
}
// "root": true,
// "extends": [
Expand Down
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { HomeRoute } from "../lib/routes/Home/HomeRoute";
import { t } from "./i18n";

export function generatePageMeta() {
export async function generateMetadata() {
return {
title: "",
description: t("home-route.meta.description"),
Expand Down

0 comments on commit a3214ee

Please sign in to comment.