Skip to content

Commit a22fb99

Browse files
authored
Fix formatting in getStaticPaths function
1 parent d0bdc0a commit a22fb99

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/notes/[slug].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Layout from '../../layouts/Layout.astro';
66
77
export const getStaticPaths = async () => {
88
const notes = await getCollection("notes");
9-
const paths = notes. map(note => {
9+
const paths = notes.map(note => {
1010
return {
1111
params: {
1212
slug: note.slug

0 commit comments

Comments
 (0)