From 3d3090c4e2bc2fac41d797230d02971e1bc9f37e Mon Sep 17 00:00:00 2001 From: gbanyan Date: Tue, 18 Nov 2025 16:59:33 +0800 Subject: [PATCH] Hide subtitle on current storyline station --- components/post-storyline-nav.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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} + + )} + ); }