From 1a5185628fb186773e80a58304c3c6bfb9e2d3ab Mon Sep 17 00:00:00 2001 From: Yi-Jyun Pan Date: Mon, 22 Sep 2025 02:56:10 +0800 Subject: [PATCH 1/2] fix: delay set to 500ms --- app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/layout.tsx b/app/layout.tsx index 1216aa0..90e1254 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -32,7 +32,7 @@ export default async function RootLayout({ - {children} + {children} From a2a34be1c1b156ef1803ca61965c365c883ca86e Mon Sep 17 00:00:00 2001 From: Yi-Jyun Pan Date: Mon, 22 Sep 2025 03:00:18 +0800 Subject: [PATCH 2/2] fix: fallback title not correctly set --- app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/layout.tsx b/app/layout.tsx index 90e1254..7d749dd 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -7,7 +7,7 @@ import { ProgressProvider } from "@/providers/use-progress-provider"; import { PreloadResources } from "./preload-resources"; export const metadata: Metadata = { - title: { template: "%s | 資料庫練功坊", default: "首頁" }, + title: { template: "%s | 資料庫練功坊", default: "資料庫練功坊" }, description: "AI 賦能的資料庫練習平台", };