Skip to content

Commit dcb11f2

Browse files
committed
sort imports
1 parent 68732b3 commit dcb11f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/articles/[...page].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2+
import { getCollection } from "astro:content";
23
import type { GetStaticPaths } from "astro";
34
import ArticleList from "../../components/ArticleList.astro";
45
import GlobalLayout from "../../layouts/GlobalLayout.astro";
56
import { Focus } from "../../schema";
6-
import { getCollection } from "astro:content";
77
88
export const getStaticPaths = (async ({ paginate }) => {
99
const articles = (await getCollection("articles")).sort(

0 commit comments

Comments
 (0)