Skip to content

Commit

Permalink
i18n(ko-KR): update tutorial/
Browse files Browse the repository at this point in the history
  • Loading branch information
jsparkdev committed Jan 21, 2025
1 parent 041785a commit 2cdf78f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 2cdf78f

Please sign in to comment.