From f36e2725bd87b474f709217afcdd44cd02c8bb45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=BF=E3=81=A6=E3=82=8B=E3=81=9E?= Date: Fri, 13 Mar 2026 07:15:48 +0900 Subject: [PATCH] =?UTF-8?q?'frontend/src/types.ts'=20=E3=82=92=E6=9B=B4?= =?UTF-8?q?=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/types.ts b/frontend/src/types.ts index d7b0afd..f40f533 100644 --- a/frontend/src/types.ts +++ b/frontend/src/types.ts @@ -54,8 +54,8 @@ export type Post = { export type PostTagChange = { post: Post - tag: Tag - user?: User + tag: Tag | null + user: User | null changeType: 'add' | 'remove' timestamp: string }