fix: fix type errors

This commit is contained in:
saicaca
2025-05-30 20:34:35 +08:00
parent dde7835dd7
commit 559a324ae5
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ interface Props {
published: Date;
updated?: Date;
tags: string[];
category: string;
category: string | null;
image: string;
description: string;
draft: boolean;
+1 -1
View File
@@ -10,7 +10,7 @@ interface Props {
published: Date;
updated?: Date;
tags: string[];
category: string;
category: string | null;
hideTagsForMobile?: boolean;
hideUpdateDate?: boolean;
}