Add nullcheck to tag name to avoid crashing the client (#11519)

GitOrigin-RevId: 917fcffa672e2626203275ea5e62ce9388366f8e
This commit is contained in:
M Fahru
2023-02-02 09:03:28 +00:00
committed by Copybot
parent e5f8b991ba
commit 9795904fac
7 changed files with 14 additions and 7 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
export type Tag = {
_id: string
user_id: string
name: string
name: string | null
project_ids?: string[]
}