diff --git a/app/components/ui/news-author.tsx b/app/components/ui/news-author.tsx index af96edc..d906f7e 100644 --- a/app/components/ui/news-author.tsx +++ b/app/components/ui/news-author.tsx @@ -1,9 +1,9 @@ -import type { TAuthor } from '~/apis/common/get-news' +import type { TAuthorResponse } from '~/apis/common/get-news' import { ProfileIcon } from '~/components/icons/profile' import { formatDate } from '~/utils/formatter' type TDetailNewsAuthor = { - author?: TAuthor + author?: TAuthorResponse live_at?: string text?: string }