diff options
author | 2024-01-02 07:17:00 +0000 | |
---|---|---|
committer | 2024-01-02 07:17:00 +0000 | |
commit | 35987afeb5b4512ac18fa79c90902d7427952dee (patch) | |
tree | 0b44f3ac5ed95aec54ceb6f067d87210f579471b /examples/hackernews/src | |
parent | b49bd313777410ad07c9a36477c985c571564813 (diff) | |
download | astro-35987afeb5b4512ac18fa79c90902d7427952dee.tar.gz astro-35987afeb5b4512ac18fa79c90902d7427952dee.tar.zst astro-35987afeb5b4512ac18fa79c90902d7427952dee.zip |
[ci] format
Diffstat (limited to 'examples/hackernews/src')
-rw-r--r-- | examples/hackernews/src/pages/stories/[id].astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hackernews/src/pages/stories/[id].astro b/examples/hackernews/src/pages/stories/[id].astro index 9cfad36fd..84383aa9e 100644 --- a/examples/hackernews/src/pages/stories/[id].astro +++ b/examples/hackernews/src/pages/stories/[id].astro @@ -25,7 +25,7 @@ const story = (await fetchAPI(`item/${id}`)) as IStory; <a href={`/users/${story.user}`}> {story.user} </a> - {story.time_ago} + {story.time_ago} </p> </header> <main> |