diff --git a/components/post-storyline-nav.tsx b/components/post-storyline-nav.tsx index 3a8e273..739fc6d 100644 --- a/components/post-storyline-nav.tsx +++ b/components/post-storyline-nav.tsx @@ -28,7 +28,7 @@ export function PostStorylineNav({ current, newer, older }: Props) { key: 'current', label: '你在這裡', post: current, - subtitle: '正在閱讀' + subtitle: '' }, { key: 'newer', @@ -86,10 +86,12 @@ function Station({ station }: { station: StationConfig }) {
{post.title}
- - {subtitle} - - + {subtitle && ( + + {subtitle} + + )} + ); }