Skip to content

Commit

Permalink
fix(ArticleDetail): fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
wlliaml committed Feb 20, 2024
1 parent 60fdea1 commit 0141df4
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 2 deletions.
4 changes: 4 additions & 0 deletions lang/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -2392,6 +2392,10 @@
"defaultMessage": "left a comment in {circleName}",
"description": "src/components/Notice/CircleNotice/CircleNewDiscussionComments.tsx"
},
"zn83cE": {
"defaultMessage": "Preview",
"description": "src/components/Editor/ToggleAccess/SupportSettingDialog/Content.tsx"
},
"zvNfwL": {
"defaultMessage": "Operation too frequent, please try again later.",
"description": "ACTION_LIMIT_EXCEEDED"
Expand Down
4 changes: 4 additions & 0 deletions lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2392,6 +2392,10 @@
"defaultMessage": "left a comment in {circleName}",
"description": "src/components/Notice/CircleNotice/CircleNewDiscussionComments.tsx"
},
"zn83cE": {
"defaultMessage": "Preview",
"description": "src/components/Editor/ToggleAccess/SupportSettingDialog/Content.tsx"
},
"zvNfwL": {
"defaultMessage": "Operation too frequent, please try again later.",
"description": "ACTION_LIMIT_EXCEEDED"
Expand Down
4 changes: 4 additions & 0 deletions lang/zh-Hans.json
Original file line number Diff line number Diff line change
Expand Up @@ -2392,6 +2392,10 @@
"defaultMessage": "在 {circleName} 中留言",
"description": "src/components/Notice/CircleNotice/CircleNewDiscussionComments.tsx"
},
"zn83cE": {
"defaultMessage": "效果预览",
"description": "src/components/Editor/ToggleAccess/SupportSettingDialog/Content.tsx"
},
"zvNfwL": {
"defaultMessage": "操作过于频繁,请稍候重试",
"description": "ACTION_LIMIT_EXCEEDED"
Expand Down
4 changes: 4 additions & 0 deletions lang/zh-Hant.json
Original file line number Diff line number Diff line change
Expand Up @@ -2392,6 +2392,10 @@
"defaultMessage": "在 {circleName} 中留言",
"description": "src/components/Notice/CircleNotice/CircleNewDiscussionComments.tsx"
},
"zn83cE": {
"defaultMessage": "效果預覽",
"description": "src/components/Editor/ToggleAccess/SupportSettingDialog/Content.tsx"
},
"zvNfwL": {
"defaultMessage": "操作過於頻繁,請稍候重試",
"description": "ACTION_LIMIT_EXCEEDED"
Expand Down
4 changes: 2 additions & 2 deletions src/views/ArticleDetail/Comments/CommentDetail/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { useEffect, useState } from 'react'

import {
CommentType,
QueryError,
ThreadCommentBeta,
ThreadCommentType,
usePublicQuery,
} from '~/components'
import { CommentDetailQuery } from '~/gql/graphql'
Expand Down Expand Up @@ -107,7 +107,7 @@ const CommentDetail = () => {
return null
}

const comment = data?.node as CommentType
const comment = data?.node as ThreadCommentType

return (
<section>
Expand Down

0 comments on commit 0141df4

Please sign in to comment.