diff --git a/src/components/comment/Comments.astro b/src/components/comment/Comments.astro index df8fbad..b5cec85 100644 --- a/src/components/comment/Comments.astro +++ b/src/components/comment/Comments.astro @@ -10,7 +10,7 @@ interface Props { const { commentKey, title } = Astro.props; const config = await getConfig(); -const comments = config != null ? await loadComments(commentKey, 0, config) : null; +const comments = config != null ? await loadComments(commentKey, title, 0, config) : null; ---