Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -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()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user