refactor: rename name→displayName across client

This commit is contained in:
Kirill
2026-05-20 11:00:28 +05:00
parent 8d9c250eb7
commit 00b74e56d7
7 changed files with 21 additions and 15 deletions
@@ -37,7 +37,7 @@ export type AdminOrderDetailResponse = {
comment: string | null
createdAt: string
updatedAt: string
user: { id: string; email: string; name: string | null; phone: string | null }
user: { id: string; email: string; displayName: string | null; phone: string | null }
items: Array<{
id: string
productId: string
@@ -7,7 +7,7 @@ export type AdminReview = {
status: string
createdAt: string
moderatedAt: string | null
user: { id: string; email: string; name: string | null }
user: { id: string; email: string; displayName: string | null }
product: { id: string; title: string }
}