fix: .gitignore

This commit is contained in:
Prad Nukala
2026-06-30 12:03:32 -04:00
parent 22fceb787b
commit 4422ff4410
23 changed files with 1000 additions and 905 deletions
+2 -2
View File
@@ -16,8 +16,8 @@ export function getFormattedDate(
}
export function collectionDateSort(
a: CollectionEntry<"post" | "note">,
b: CollectionEntry<"post" | "note">,
a: CollectionEntry<"writing" | "projects">,
b: CollectionEntry<"writing" | "projects">,
) {
return b.data.publishDate.getTime() - a.data.publishDate.getTime();
}