Fix warning

This commit is contained in:
Takeshi Kimata
2024-05-09 22:48:58 +09:00
parent fe537c93aa
commit 6d95fc1510
2 changed files with 0 additions and 6 deletions

View File

@@ -10,10 +10,6 @@ export async function generateMetadata({ params: { locale } }) {
return { return {
title: t("title"), title: t("title"),
description: t("description"), description: t("description"),
themeColor: [
{ media: "(prefers-color-scheme: light)", color: "white" },
{ media: "(prefers-color-scheme: dark)", color: "black" },
],
icons: { icons: {
icon: "/favicon/favicon.ico", icon: "/favicon/favicon.ico",
shortcut: "/favicon/favicon-16x16.png", shortcut: "/favicon/favicon-16x16.png",

View File

@@ -49,7 +49,6 @@ export default function Page({ params }: { params: { projectId: string } }) {
testClassification: t("test_classification"), testClassification: t("test_classification"),
byType: t("by_type"), byType: t("by_type"),
byPriority: t("by_priority"), byPriority: t("by_priority"),
testTypes: t("test_types"),
other: t("other"), other: t("other"),
security: t("security"), security: t("security"),
performance: t("performance"), performance: t("performance"),
@@ -63,7 +62,6 @@ export default function Page({ params }: { params: { projectId: string } }) {
regression: t("regression"), regression: t("regression"),
automated: t("automated"), automated: t("automated"),
manual: t("manual"), manual: t("manual"),
priority: t("priority"),
critical: t("critical"), critical: t("critical"),
high: t("high"), high: t("high"),
medium: t("medium"), medium: t("medium"),