Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/docs/ko/tutorial/5-astro-api/3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ import { Steps } from '@astrojs/starlight/components';
---
import BaseLayout from '../../layouts/BaseLayout.astro';
const allPosts = Object.values(import.meta.glob('../posts/*.md', { eager: true }));
const tags = [...new Set(allPosts.map((post) => post.frontmatter.tags).flat())];
const tags = [...new Set(allPosts.map((post: any) => post.frontmatter.tags).flat())];
const pageTitle = "Tag Index";
---
<BaseLayout pageTitle={pageTitle}>
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/ko/tutorial/6-islands/2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Astro 컴포넌트에 상호작용을 추가하려면 `<script>` 태그를 사
<Steps>
1. `src/components/ThemeIcon.astro`의 `<style>` 태그 뒤에 다음 `<script>` 태그를 추가합니다.

```astro title="src/components/ThemeIcon.astro" ins={9-37}
```astro title="src/components/ThemeIcon.astro" ins={9-38}
<style>
.sun { fill: black; }
.moon { fill: transparent; }
Expand Down