From 6d95fc1510721c97880ca67330f5ee052a9029af Mon Sep 17 00:00:00 2001 From: Takeshi Kimata <117462761+kimatata@users.noreply.github.com> Date: Thu, 9 May 2024 22:48:58 +0900 Subject: [PATCH] Fix warning --- frontend/src/app/[locale]/layout.tsx | 4 ---- frontend/src/app/[locale]/projects/[projectId]/home/page.tsx | 2 -- 2 files changed, 6 deletions(-) diff --git a/frontend/src/app/[locale]/layout.tsx b/frontend/src/app/[locale]/layout.tsx index 9bb10f3..1cccba8 100644 --- a/frontend/src/app/[locale]/layout.tsx +++ b/frontend/src/app/[locale]/layout.tsx @@ -10,10 +10,6 @@ export async function generateMetadata({ params: { locale } }) { return { title: t("title"), description: t("description"), - themeColor: [ - { media: "(prefers-color-scheme: light)", color: "white" }, - { media: "(prefers-color-scheme: dark)", color: "black" }, - ], icons: { icon: "/favicon/favicon.ico", shortcut: "/favicon/favicon-16x16.png", diff --git a/frontend/src/app/[locale]/projects/[projectId]/home/page.tsx b/frontend/src/app/[locale]/projects/[projectId]/home/page.tsx index b2a14be..6af7e18 100644 --- a/frontend/src/app/[locale]/projects/[projectId]/home/page.tsx +++ b/frontend/src/app/[locale]/projects/[projectId]/home/page.tsx @@ -49,7 +49,6 @@ export default function Page({ params }: { params: { projectId: string } }) { testClassification: t("test_classification"), byType: t("by_type"), byPriority: t("by_priority"), - testTypes: t("test_types"), other: t("other"), security: t("security"), performance: t("performance"), @@ -63,7 +62,6 @@ export default function Page({ params }: { params: { projectId: string } }) { regression: t("regression"), automated: t("automated"), manual: t("manual"), - priority: t("priority"), critical: t("critical"), high: t("high"), medium: t("medium"),