fix: make tags optional in ChangelogEntry, remove unused VoteState import

This commit is contained in:
2026-03-30 16:40:35 -04:00
parent d387484872
commit 2d55af4de2
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ export type ChangelogEntry = {
title: string
version: string
publishedAt: string
tags: string[]
tags?: string[]
body: unknown[]
}