Skip to content

Commit

Permalink
docs: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kawamataryo committed Jan 2, 2025
1 parent 974fd04 commit 16ae674
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docs/.vitepress/theme/components/EmbedPosts/LoadCDNScript.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
import { onMounted } from 'vue'
onMounted(() => {
const script = document.createElement('script');
script.src = "https://embed.bsky.app/static/embed.js";
script.async = true;
document.body.appendChild(script);
if (!document.querySelector('script[src="https://embed.bsky.app/static/embed.js"]')) {
const script = document.createElement('script');
script.src = "https://embed.bsky.app/static/embed.js";
script.async = true;
document.body.appendChild(script);
}
})
</script>
4 changes: 4 additions & 0 deletions docs/ja/faq.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
title: 'FAQ: sky'
---

# FAQ

よくある質問をまとめました。もし、他にも質問があれば [@sky-follower-bridge.dev](https://bsky.app/profile/sky-follower-bridge.dev) までお気軽にご連絡ください。
Expand Down

0 comments on commit 16ae674

Please sign in to comment.