このコミットが含まれているのは:
2026-02-07 01:01:10 +09:00
コミット 4c5668653f
6個のファイルの変更43行の追加47行の削除
+1 -1
ファイルの表示
@@ -123,7 +123,7 @@ export default (({ user }: Props) => {
const wikiPage = await fetchWikiPage (String (wikiId ?? ''), { })
const tag = await fetchTagByName (wikiPage.title)
setPostCount (tag.postCount)
setPostCount (tag?.postCount ?? 0)
}
catch
{