File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ export const getStartPagesByOrderParam = async () => {
77 ) ;
88} ;
99
10- export const getConceptPagesAlphabetical = async ( ) => {
11- return await getCollection ( "concepts" ) ;
10+ export const getConceptPagesAlphabetical = ( ) => {
11+ return getCollection ( "concepts" ) ;
1212} ;
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ import QuickStart from "../../components/QuickStart.astro";
66import Grid3 from " ../../components/Grid3.astro" ;
77import HoverableLink from " ../../components/HoverableLink.astro" ;
88import { conceptPagePath } from " ../../lib/utils" ;
9- import { getStartPagesByOrderParam } from " ../../content/collections" ;
9+ import { getConceptPagesAlphabetical } from " ../../content/collections" ;
1010
1111const title = " Concepts" ;
1212const heroTitle = " Nix concepts" ;
1313const description = " The whys and the hows of Nix" ;
1414
15- const conceptPages = await getStartPagesByOrderParam ();
15+ const conceptPages = await getConceptPagesAlphabetical ();
1616---
1717
1818<Layout {title } {description }>
You can’t perform that action at this time.
0 commit comments