Merge branch 'main' into develop

This commit is contained in:
2026-02-26 13:42:07 +08:00
+3 -3
View File
@@ -2,8 +2,10 @@ import { useMemo } from "react"
import { useTranslation } from "react-i18next" import { useTranslation } from "react-i18next"
import Seo from "@/components/seo" import Seo from "@/components/seo"
type ChangeTypeKey = "feat" | "fix" | "refactor" | "chore"
interface ChangeEntry { interface ChangeEntry {
type: "feat" | "fix" | "refactor" | "chore" type: ChangeTypeKey
title: string title: string
description?: string description?: string
date?: string date?: string
@@ -81,8 +83,6 @@ const CHANGELOG_DATA: ChangelogVersion[] = [
}, },
] ]
type ChangeTypeKey = "feat" | "fix" | "refactor" | "chore"
export default function Changelog() { export default function Changelog() {
const { t } = useTranslation() const { t } = useTranslation()