diff options
author | 2023-09-06 15:25:56 +0000 | |
---|---|---|
committer | 2023-09-06 15:25:56 +0000 | |
commit | eb7615f25a88c25dc6db50b199877a8f79597a74 (patch) | |
tree | 74b5d3773ffb8fa7020e3d3cff2493ba4adc2ed6 /examples/hackernews/src | |
parent | c06b41a6b86a41ba4b1ffa4bdecafac9b7299768 (diff) | |
download | astro-eb7615f25a88c25dc6db50b199877a8f79597a74.tar.gz astro-eb7615f25a88c25dc6db50b199877a8f79597a74.tar.zst astro-eb7615f25a88c25dc6db50b199877a8f79597a74.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 84383aa9e..9cfad36fd 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> |