mirror of
https://github.com/Fluffy-Bean/website.git
synced 2025-05-29 14:53:16 +00:00
style: format code with Prettier
This commit fixes the style issues introduced in 54e79be
according to the output
from Prettier.
Details: None
This commit is contained in:
parent
54e79beb30
commit
7884f0a028
3 changed files with 22 additions and 18 deletions
|
@ -3,22 +3,24 @@ title: Astro is hard....
|
|||
description: Arugh
|
||||
pubDate: 2024-05-28
|
||||
tags:
|
||||
- astro
|
||||
- typescript
|
||||
- astro
|
||||
- typescript
|
||||
---
|
||||
|
||||
import Note from "../../components/Note.astro";
|
||||
|
||||
<Note text="I have no clue what I'm doing :3" />
|
||||
|
||||
- I've been trying to learn typescript through trying astro
|
||||
- Astro is hard, due to all the issues I've encountered
|
||||
- I've been trying to learn typescript through trying astro
|
||||
- Astro is hard, due to all the issues I've encountered
|
||||
|
||||
```typescript
|
||||
export async function getTagsBySlug(postTags: string[]): Promise<CollectionEntry<"tags">[]> {
|
||||
export async function getTagsBySlug(
|
||||
postTags: string[],
|
||||
): Promise<CollectionEntry<"tags">[]> {
|
||||
// Collect all the tags from collections
|
||||
const allTags: CollectionEntry<"tags">[] = await getCollection("tags");
|
||||
|
||||
|
||||
// Loop through all the tags in a post and the tags in the collections
|
||||
// To see if they match, if they do we'll return them
|
||||
const tags: CollectionEntry<"tags">[] = [];
|
||||
|
@ -27,7 +29,7 @@ export async function getTagsBySlug(postTags: string[]): Promise<CollectionEntry
|
|||
if (allTag.slug === postTag) tags.push(allTag);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
// Yeet
|
||||
return tags;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue