Skip to content

Commit 40f94c1

Browse files
committed
fix(pending-post): content shouldn't be used in title in pending post
1 parent 92a6b8a commit 40f94c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/pending-post/pending-post.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function Post() {
9090
<div className={styles.column}>
9191
<div className={styles.header}>
9292
<Link to={post?.link} target={post?.link ? '_blank' : undefined} rel="noreferrer" className={styles.title}>
93-
{post?.title || post?.content || '-'}
93+
{post?.title || '-'}
9494
</Link>{' '}
9595
<span className={stateStyle}>{state}</span>
9696
{hostname && (

0 commit comments

Comments
 (0)