Skip to content

Commit

Permalink
Update frontend/apps/service-site/src/features/posts/components/PostW…
Browse files Browse the repository at this point in the history
…riter/PostWriter.tsx

Co-authored-by: Junki Saito <[email protected]>
  • Loading branch information
kumanoayumi and junkisai authored Oct 18, 2024
1 parent d4bcd72 commit 01e2d20
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export const PostWriter: FC<Props> = ({ post }) => {
<span className={styles.writerText}>Text by</span>
{post.writer}
</p>
{post.writerProfile ? (
{post.writerProfile && (
<p className={styles.writerProfile}>{post.writerProfile}</p>
) : null}
)}
{post.lastEditedOn ? (
<p className={styles.lastEdited}>
<span>Last edited on</span>
Expand Down

0 comments on commit 01e2d20

Please sign in to comment.